mirror of
https://github.com/docker/docs.git
synced 2026-03-29 23:38:56 +07:00
* added test for keywords Signed-off-by: Adrien Duermael <adrien@duermael.com> * fixed keywords in some md files for tests to pass Signed-off-by: Adrien Duermael <adrien@duermael.com> * fixed keywords in /datacenter Signed-off-by: Adrien Duermael <adrien@duermael.com> * tests/Dockerfile: no need to add git Signed-off-by: Adrien Duermael <adrien@duermael.com> * tests/Dockerfile: changed maintainer Signed-off-by: Adrien Duermael <adrien@duermael.com>
38 lines
1.3 KiB
Markdown
38 lines
1.3 KiB
Markdown
---
|
|
description: Remove a replica from a DTR cluster
|
|
keywords: docker, dtr, cli, remove
|
|
title: docker/dtr remove
|
|
---
|
|
|
|
Remove a replica from a DTR cluster
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
docker run -it --rm docker/dtr \
|
|
remove [command options]
|
|
```
|
|
|
|
## Description
|
|
|
|
|
|
This command removes a replica from the cluster, stops and removes all
|
|
DTR containers, and deletes all DTR volumes.
|
|
|
|
|
|
## Options
|
|
|
|
| Option | Description |
|
|
|:--------------------------|:---------------------------|
|
|
|`--ucp-url`|Specify the UCP controller URL including domain and port|
|
|
|`--ucp-username`|Specify the UCP admin username|
|
|
|`--ucp-password`|Specify the UCP admin password|
|
|
|`--debug`|Enable debug mode, provides additional logging|
|
|
|`--hub-username`|Specify the Docker Hub username for pulling images|
|
|
|`--hub-password`|Specify the Docker Hub password for pulling images|
|
|
|`--ucp-insecure-tls`|Disable TLS verification for UCP|
|
|
|`--ucp-ca`|Use a PEM-encoded TLS CA certificate for UCP|
|
|
|`--force-remove`|Force removal of replica even if it can break your cluster's state. Necessary only when --existing-replica-id == --replica-id.|
|
|
|`--replica-id`|Specify the replica ID. Must be unique per replica, leave blank for random|
|
|
|`--existing-replica-id`|ID of an existing replica in a cluster|
|