You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`--debug`| $DEBUG | Enable debug mode for additional logs. |
43
-
|`--existing-replica-id`| $DTR_REPLICA_ID | The ID of an existing DTR replica.To add, remove or modify DTR, you must connect to an existing healthy replica's database.. |
46
+
|`--existing-replica-id`| $DTR_REPLICA_ID | The ID of an existing DTR replica.To add, remove or modify a DTR replica, you must connect to an existing healthy replica's database. |
44
47
|`--help-extended`| $DTR_EXTENDED_HELP | Display extended help text for a given command. |
45
-
|`--ucp-ca`| $UCP_CA | Use a PEM-encoded TLS CA certificate for UCP.Download the UCP TLS CA certificate from https://<ucp-url>/ca, and use --ucp-ca "$(cat ca.pem)". |
46
-
|`--ucp-insecure-tls`| $UCP_INSECURE_TLS | Disable TLS verification for UCP.The installation uses TLS but always trusts the TLS certificate used by UCP, which can lead to man-in-the-middle attacks. For production deployments, use --ucp-ca "$(cat ca.pem)" instead. |
48
+
|`--offline-backup`| $DTR_OFFLINE_BACKUP | This flag takes RethinkDB down during backup and takes a more reliable backup. If you back up DTR with this flag, RethinkDB will go down during backup. However, offline backups are guaranteed to be more consistent than online backups. |
49
+
|`--ucp-ca`| $UCP_CA | Use a PEM-encoded TLS CA certificate for UCP. Download the UCP TLS CA certificate from `https://<ucp-url>/ca`, and use `--ucp-ca "$(cat ca.pem)"`. |
50
+
|`--ucp-insecure-tls`| $UCP_INSECURE_TLS | Disable TLS verification for UCP. The installation uses TLS but always trusts the TLS certificate used by UCP, which can lead to MITM (man-in-the-middle) attacks. For production deployments, use `--ucp-ca "$(cat ca.pem)"` instead. |
47
51
|`--ucp-password`| $UCP_PASSWORD | The UCP administrator password. |
48
52
|`--ucp-url`| $UCP_URL | The UCP URL including domain and port. |
49
53
|`--ucp-username`| $UCP_USERNAME | The UCP administrator username. |
|`--debug`| $DEBUG | Enable debug mode for additional logs. |
45
-
|`--existing-replica-id`| $DTR_REPLICA_ID | The ID of an existing DTR replica.To add, remove or modify DTR, you must connect to an existing healthy replica's database.. |
45
+
|`--existing-replica-id`| $DTR_REPLICA_ID | The ID of an existing DTR replica.To add, remove or modify DTR, you must connect to an existing healthy replica's database. |
46
46
|`--help-extended`| $DTR_EXTENDED_HELP | Display extended help text for a given command. |
47
-
|`--overlay-subnet`| $DTR_OVERLAY_SUBNET | The subnet used by the dtr-ol overlay network. Example: 10.0.0.0/24.For high-availalibity, DTR creates an overlay network between UCP nodes. This flag allows you to choose the subnet for that network. Make sure the subnet you choose is not used on any machine where DTR replicas are deployed. |
48
-
|`--prune`| $PRUNE | Delete the data volumes of all unhealthy replicas.With this option, the volume of the DTR replica you're restoring is preserved but the volumes for all other replicas are deleted. This has the same result as completely uninstalling DTR from those replicas.. |
49
-
|`--ucp-ca`| $UCP_CA | Use a PEM-encoded TLS CA certificate for UCP.Download the UCP TLS CA certificate from https://<ucp-url>/ca, and use --ucp-ca "$(cat ca.pem)". |
50
-
|`--ucp-insecure-tls`| $UCP_INSECURE_TLS | Disable TLS verification for UCP.The installation uses TLS but always trusts the TLS certificate used by UCP, which can lead to man-in-the-middle attacks. For production deployments, use --ucp-ca "$(cat ca.pem)" instead. |
47
+
|`--overlay-subnet`| $DTR_OVERLAY_SUBNET | The subnet used by the dtr-ol overlay network. Example: `10.0.0.0/24`. For high-availability, DTR creates an overlay network between UCP nodes. This flag allows you to choose the subnet for that network. Make sure the subnet you choose is not used on any machine where DTR replicas are deployed. |
48
+
|`--prune`| $PRUNE | Delete the data volumes of all unhealthy replicas.With this option, the volume of the DTR replica you`re restoring is preserved but the volumes for all other replicas are deleted. This has the same result as completely uninstalling DTR from those replicas. |
49
+
|`--ucp-ca`| $UCP_CA | Use a PEM-encoded TLS CA certificate for UCP.Download the UCP TLS CA certificate from https://<ucp-url>/ca, and use `--ucp-ca "$(cat ca.pem)"`. |
50
+
|`--ucp-insecure-tls`| $UCP_INSECURE_TLS | Disable TLS verification for UCP.The installation uses TLS but always trusts the TLS certificate used by UCP, which can lead to MITM (man-in-the-middle) attacks. For production deployments, use `--ucp-ca "$(cat ca.pem)"` instead. |
51
51
|`--ucp-password`| $UCP_PASSWORD | The UCP administrator password. |
52
52
|`--ucp-url`| $UCP_URL | The UCP URL including domain and port. |
53
53
|`--ucp-username`| $UCP_USERNAME | The UCP administrator username. |
Copy file name to clipboardExpand all lines: datacenter/dtr/2.5/reference/cli/index.md
+14-11Lines changed: 14 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,17 +19,20 @@ docker run -it --rm docker/dtr \
19
19
command [command options]
20
20
```
21
21
22
+
If not specified, `docker/dtr` uses the `latest` tag by default. To work with a different version, specify it in the command. For example, `docker run -it --rm docker/dtr:2.5.5`.
0 commit comments