-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Closed
Labels
Description
Is this a docs issue?
- My issue is about the documentation content or website
Type of issue
Information is incorrect
Description
The current example in the documentation for the docker push command contains incorrect syntax. The command listed is:
docker push my-app my-namespace/my-repo:v1.0
However, docker push only accepts a single argument — the fully qualified name of the image. The correct syntax should be:
docker push my-namespace/my-repo:v1.0
Location
https://docs.docker.com/docker-hub/repos/manage/hub-images/push/
Suggestion
No response