CLI Reference¶
Warning
In correlation with the end of life (EOL) date for MKE 3.3.x, Mirantis stopped maintaining this documentation version as of 2022-05-27. The latest MKE product documentation is available here.
The mirantis/ucp:3.x.y
image includes commands that install and manage MKE
on a Mirantis Container Runtime.
You can configure the commands using either flags or environment variables.
Environment variables can use either of the following types of syntax:
Pass the value from your shell using the
docker container run -e VARIABLE_NAME
syntax.Specify the value explicitly from the command line using the
docker container run -e VARIABLE_NAME=value
syntax.
To use the MKE CLI:
MKE CLI use requires that you name the mirantis/ucp:3.x.y
image ucp
and bind-mount the Docker daemon socket:
docker container run -it --rm \
--name ucp \
-v /var/run/docker.sock:/var/run/docker.sock \
mirantis/ucp:3.x.y \
<command> <command-options>
Additional information is available for each command by using the --help
flag.