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
Copy file name to clipboardExpand all lines: content/manuals/docker-hub/repos/manage/hub-images/move.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,20 @@ organized under the correct accounts or namespaces.
16
16
17
17
When consolidating personal repositories, you can pull private images from the initial repository and push them into another repository owned by you. To avoid losing your private images, perform the following steps:
18
18
19
-
1. Navigate to [Docker Hub](https://hub.docker.com) create a new Docker account and select a personal subscription.
20
-
2. Using `docker login` from the CLI, sign in using your original Docker account and pull your private images.
21
-
3. Tag your private images with your newly created Docker username, for example:
19
+
1.[Sign up](https://app.docker.com/signup) for a new Docker account with a personal subscription.
20
+
2. Sign in to [Docker](https://app.docker.com/login) using your original Docker account
21
+
3. Pull your images:
22
+
23
+
```console
24
+
$ docker pull namespace1/docker101tutorial
25
+
```
26
+
27
+
4. Tag your private images with your newly created Docker username, for example:
22
28
23
29
```console
24
30
$ docker tag namespace1/docker101tutorial new_namespace/docker101tutorial
25
31
```
26
-
4. Using `docker login` from the CLI, sign in with your newly created Docker account, and push your newly tagged private images to your new Docker account namespace:
32
+
5. Using `docker login` from the CLI, sign in with your newly created Docker account, and push your newly tagged private images to your new Docker account namespace:
0 commit comments