Reputation: 21
What is the difference between the docker tag
and docker image tag
commands?
Upvotes: 0
Views: 2977
Reputation: 3225
There is no difference between them; docker image tag
was just introduced as a more uniform command since it is an action to be taken on an image. Other similar cases exist, like for example, docker ps
and docker container ls
, docker rmi
and docker image rm
, etc.
Upvotes: 3