From 794cf292f7ec5cd343e1d9fe81df886e6b244b51 Mon Sep 17 00:00:00 2001 From: lexfromlau <157305125+lexfromlau@users.noreply.github.com> Date: Mon, 13 May 2024 14:17:52 +0200 Subject: [PATCH] Update what-is-a-registry.md remove -u flag from docker push --- content/guides/docker-concepts/the-basics/what-is-a-registry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/docker-concepts/the-basics/what-is-a-registry.md b/content/guides/docker-concepts/the-basics/what-is-a-registry.md index 3c8c0d9fec..4ad60a309d 100644 --- a/content/guides/docker-concepts/the-basics/what-is-a-registry.md +++ b/content/guides/docker-concepts/the-basics/what-is-a-registry.md @@ -116,7 +116,7 @@ Don't worry about the specifics of the Dockerfile, as you'll learn about that in 7. Finally, it's time to push the newly built image to your Docker Hub repository by using the [`docker push`](/reference/cli/docker/image/push/) command: ```console - docker push -u /docker-quickstart:1.0 + docker push /docker-quickstart:1.0 ``` 8. Open [Docker Hub](https://hub.docker.com) and navigate to your repository. Navigate to the **Tags** section and see your newly pushed image.