mirror of https://github.com/docker/docs.git
44 lines
1.2 KiB
Markdown
44 lines
1.2 KiB
Markdown
---
|
|
title: docker/ucp uninstall-ucp
|
|
description: Uninstall UCP from this swarm
|
|
keywords:
|
|
- docker, dtr, cli, uninstall-ucp
|
|
---
|
|
|
|
Uninstall UCP from this swarm
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
|
|
docker run -it --rm \
|
|
--name ucp \
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
docker/ucp \
|
|
uninstall-ucp [command options]
|
|
|
|
```
|
|
|
|
## Description
|
|
|
|
This command uninstalls UCP from the swarm, but preserves the swarm so that
|
|
your applications can continue running.
|
|
After UCP is uninstalled you can use the 'docker swarm leave' and
|
|
'docker node rm' commands to remove nodes from the swarm.
|
|
|
|
Once UCP is uninstalled, you won't be able to join nodes to the swarm unless
|
|
UCP is installed again.
|
|
|
|
|
|
## Options
|
|
|
|
| Option | Description |
|
|
|:--------------------------|:---------------------------|
|
|
|`--debug, D`|Enable debug mode|
|
|
|`--jsonlog`|Produce json formatted output for easier parsing|
|
|
|`--interactive, i`|Run in interactive mode and prompt for configuration values|
|
|
|`--pull`|Pull UCP images: 'always', when 'missing', or 'never'|
|
|
|`--registry-username`|Username to use when pulling images|
|
|
|`--registry-password`|Password to use when pulling images|
|
|
|`--id`|The ID of the UCP instance to uninstall|
|