diff --git a/high-availability/backups-and-disaster-recovery.md b/high-availability/backups-and-disaster-recovery.md index 909318b129..7e942b23cd 100644 --- a/high-availability/backups-and-disaster-recovery.md +++ b/high-availability/backups-and-disaster-recovery.md @@ -37,7 +37,7 @@ on a cloud provider, depending on the way DTR is configured. ## Backup DTR data -To perform a backup of a DTR node, use the `docker/dtr backup` command. This +To perform a backup of a DTR node, use the `dockerhubenterprise/dtr backup` command. This command creates a backup of DTR: * Configurations, @@ -66,7 +66,7 @@ As an example, to create a backup of a DTR node, you can use: ```bash # Create the backup -$ docker run -i --rm docker/dtr backup \ +$ docker run -i --rm dockerhubenterprise/dtr backup \ --ucp-url \ --ucp-insecure-tls \ --existing-replica-id \ @@ -90,7 +90,7 @@ $ tar -tf /tmp/backup.tar ## Restore DTR data -You can restore a DTR node from a backup using the `docker/dtr restore` +You can restore a DTR node from a backup using the `dockerhubenterprise/dtr restore` command. This command performs a fresh installation of DTR, and reconfigures it with the configuration created during a backup. @@ -116,7 +116,7 @@ state from an existing backup: ```bash # Install and restore configurations from an existing backup $ docker run -i --rm \ - docker/dtr restore \ + dockerhubenterprise/dtr restore \ --ucp-url \ --ucp-insecure-tls \ --ucp-username \ diff --git a/install/index.md b/install/index.md index 59663f54c9..cce8df724e 100644 --- a/install/index.md +++ b/install/index.md @@ -38,7 +38,7 @@ Make sure all the nodes you plan on installing DTR are being managed by UCP. ## Step 3. Install DTR -To install DTR you use the `docker/dtr` image. This image has commands to +To install DTR you use the `dockerhubenterprise/dtr` image. This image has commands to install, configure, and backup DTR. To install DTR: @@ -81,7 +81,7 @@ To install DTR: # Install DTR $ docker run -it --rm \ - docker/dtr:2.1.0-beta1 install \ + dockerhubenterprise/dtr:2.1.0-beta1 install \ --ucp-node \ --ucp-insecure-tls ``` @@ -137,7 +137,7 @@ replica fails. For high-availability you should set 3, 5, or 7 DTR replicas. The nodes where you're going to install these replicas also need to be managed by UCP. -To add replicas to a DTR cluster, use the `docker/dtr join` command. To add +To add replicas to a DTR cluster, use the `dockerhubenterprise/dtr join` command. To add replicas: 1. Make sure the DTR images are loaded into the node. @@ -154,7 +154,7 @@ replicas: ```bash $ docker run -it --rm \ - docker/dtr:2.1.0-beta1 join \ + dockerhubenterprise/dtr:2.1.0-beta1 join \ --ucp-node \ --ucp-insecure-tls ``` diff --git a/install/uninstall.md b/install/uninstall.md index 9f18bb84d6..b19464ed36 100644 --- a/install/uninstall.md +++ b/install/uninstall.md @@ -12,7 +12,7 @@ weight=50 # Uninstall Docker Trusted Registry -Use the `docker/dtr remove` command, to remove a DTR replica from a cluster. +Use the `dockerhubenterprise/dtr remove` command, to remove a DTR replica from a cluster. To uninstall a DTR cluster you remove all DTR replicas one at a time. The remove command: @@ -24,7 +24,7 @@ To see what options are available in the uninstall command, check the [uninstall command reference](../reference/remove.md), or run: ```bash -$ docker run -it --rm docker/dtr:2.1.0-beta1 remove --help +$ docker run -it --rm dockerhubenterprise/dtr:2.1.0-beta1 remove --help ``` To remove a replica safely, you must tell the bootstrapper about one healthy replica @@ -40,7 +40,7 @@ remove a DTR replica from a cluster with multiple replicas: ```bash $ docker run -it --rm \ - docker/dtr:2.1.0-beta1 remove \ + dockerhubenterprise/dtr:2.1.0-beta1 remove \ --ucp-insecure-tls existing-replica-id (ID of an existing replica in a cluster): 7ae3cb044b70 diff --git a/install/upgrade/index.md b/install/upgrade/index.md index dcd4c3c480..d4e224a443 100644 --- a/install/upgrade/index.md +++ b/install/upgrade/index.md @@ -29,17 +29,17 @@ installation to the 2.0 version](upgrade-major.md). ## Step 2. Upgrade DTR -To upgrade DTR you use the `docker/dtr upgrade` command. +To upgrade DTR you use the `dockerhubenterprise/dtr upgrade` command. 1. Download a UCP client bundle. Having a UCP client bundle allows you to run Docker commands on a UCP cluster. Download a UCP client bundle and set up your CLI client to use it. -2. Pull the latest `docker/dtr` image. +2. Pull the latest `dockerhubenterprise/dtr` image. ```bash - $ docker pull docker/dtr + $ docker pull dockerhubenterprise/dtr ``` If the node you're upgrading doesn't have access to the internet, you can @@ -52,7 +52,7 @@ To upgrade DTR you use the `docker/dtr upgrade` command. ```bash $ docker run -it --rm \ - docker/dtr upgrade \ + dockerhubenterprise/dtr upgrade \ --ucp-insecure-tls ``` diff --git a/install/upgrade/upgrade-major.md b/install/upgrade/upgrade-major.md index cf10459489..1b98460833 100644 --- a/install/upgrade/upgrade-major.md +++ b/install/upgrade/upgrade-major.md @@ -1,5 +1,6 @@ -# docker/dtr backup +# dockerhubenterprise/dtr backup Create a backup of DTR ## Usage ```bash -docker run -i --rm docker/dtr \ +docker run -i --rm dockerhubenterprise/dtr \ backup [command options] > backup.tar ``` diff --git a/reference/dumpcerts.md b/reference/dumpcerts.md index 2c1da74923..ebe726719f 100644 --- a/reference/dumpcerts.md +++ b/reference/dumpcerts.md @@ -9,14 +9,14 @@ identifier="dtr_reference_dumpcerts" +++ -# docker/dtr dumpcerts +# dockerhubenterprise/dtr dumpcerts Print the TLS certificates used by DTR ## Usage ```bash -docker run -i --rm docker/dtr \ +docker run -i --rm dockerhubenterprise/dtr \ dumpcerts [command options] > backup.tar ``` diff --git a/reference/images.md b/reference/images.md index 907d67be24..fdb833e4e3 100644 --- a/reference/images.md +++ b/reference/images.md @@ -9,14 +9,14 @@ identifier="dtr_reference_images" +++ -# docker/dtr images +# dockerhubenterprise/dtr images List all the images necessary to install DTR ## Usage ```bash -docker run -it --rm docker/dtr \ +docker run -it --rm dockerhubenterprise/dtr \ images [command options] ``` diff --git a/reference/index.md b/reference/index.md index 2371f24bc7..ffe0c6450b 100644 --- a/reference/index.md +++ b/reference/index.md @@ -1,7 +1,7 @@ -# docker/dtr overview +# dockerhubenterprise/dtr overview This tool has commands to install, configure, and backup Docker Trusted Registry (DTR). It also allows uninstalling DTR. @@ -23,7 +23,7 @@ Additional help is available for each command with the '--help' option. ## Usage ```bash -docker run -it --rm docker/dtr \ +docker run -it --rm dockerhubenterprise/dtr \ command [command options] ``` diff --git a/reference/install.md b/reference/install.md index 8445609103..8b877e06a8 100644 --- a/reference/install.md +++ b/reference/install.md @@ -9,14 +9,14 @@ identifier="dtr_reference_install" +++ -# docker/dtr install +# dockerhubenterprise/dtr install Install Docker Trusted Registry ## Usage ```bash -docker run -it --rm docker/dtr \ +docker run -it --rm dockerhubenterprise/dtr \ install [command options] ``` diff --git a/reference/join.md b/reference/join.md index 117560164d..b8129d5e2f 100644 --- a/reference/join.md +++ b/reference/join.md @@ -9,7 +9,7 @@ identifier="dtr_reference_join" +++ -# docker/dtr join +# dockerhubenterprise/dtr join Add a new replica to an existing DTR cluster diff --git a/reference/menu.md b/reference/menu.md index ca6363f184..3e2b1afc41 100644 --- a/reference/menu.md +++ b/reference/menu.md @@ -1,7 +1,7 @@ -# docker/dtr migrate +# dockerhubenterprise/dtr migrate Migrate configurations, accounts, and repository metadata from DTR 1.4.3 to 2.0. -Only available in `docker/dtr` version 2.0.x. +Only available in `dockerhubenterprise/dtr` version 2.0.x. ## Usage ```bash -$ docker run -it --rm docker/dtr \ +$ docker run -it --rm dockerhubenterprise/dtr \ migrate [command options] ``` diff --git a/reference/reconfigure.md b/reference/reconfigure.md index b92110cacb..64a58f3c12 100644 --- a/reference/reconfigure.md +++ b/reference/reconfigure.md @@ -9,14 +9,14 @@ identifier="dtr_reference_reconfigure" +++ -# docker/dtr reconfigure +# dockerhubenterprise/dtr reconfigure Change DTR configurations ## Usage ```bash -docker run -it --rm docker/dtr \ +docker run -it --rm dockerhubenterprise/dtr \ reconfigure [command options] ``` diff --git a/reference/remove.md b/reference/remove.md index 393af38cb5..b9d4d6e200 100644 --- a/reference/remove.md +++ b/reference/remove.md @@ -9,14 +9,14 @@ identifier="dtr_reference_remove" +++ -# docker/dtr remove +# dockerhubenterprise/dtr remove Remove a DTR replica ## Usage ```bash -docker run -it --rm docker/dtr \ +docker run -it --rm dockerhubenterprise/dtr \ remove [command options] ``` diff --git a/reference/restore.md b/reference/restore.md index f32e670aeb..d7a31192f7 100644 --- a/reference/restore.md +++ b/reference/restore.md @@ -9,14 +9,14 @@ identifier="dtr_reference_restore" +++ -# docker/dtr restore +# dockerhubenterprise/dtr restore Install and restore DTR from an existing backup ## Usage ```bash -docker run -i --rm docker/dtr \ +docker run -i --rm dockerhubenterprise/dtr \ restore [command options] < backup.tar ``` diff --git a/reference/upgrade.md b/reference/upgrade.md index bae2f3e29c..e3b75738ce 100644 --- a/reference/upgrade.md +++ b/reference/upgrade.md @@ -9,14 +9,14 @@ identifier="dtr_reference_upgrade" +++ -# docker/dtr upgrade +# dockerhubenterprise/dtr upgrade Upgrade DTR 2.0.0 or later cluster to this version ## Usage ```bash -docker run -it --rm docker/dtr \ +docker run -it --rm dockerhubenterprise/dtr \ upgrade [command options] ```