dockhost/cli
The Dockhost CLI is a console utility that allows you to manage projects on dockhost.ru. Detailed documentation on the use of console utility commands can be found at https://docs.dockhost.ru/cli
docker run dockhost/cli:latest
The recommended way to get the Dockhost CLI Docker Image is to pull the prebuilt image from the Docker Hub Registry.
docker pull dockhost/cli:latest
To use a specific version, you can pull a versioned tag. You can view the list of available versions in the Docker Hub Registry.
docker pull dockhost/cli:[TAG]
Before you run the Dockhost CLI you need to get Token, the Token can be issued at Token management. To use Token, set its value in the DOCKHOST_TOKEN variable
docker run -e DOCKHOST_TOKEN=[TOKEN] dockhost/cli:latest
To run commands inside this container you can use docker run, for example to execute Dockhost CLI version you can follow the example below:
docker run dockhost/cli:latest version
Consult the Dockhost CLI Documentation to find the completed list of commands available.
Copyright © 2024 Dockhost LLC.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
docker pull dockhost/cli