Linux Memory
Linux Memory

Reputation: 21

What is the difference between docker tag and docker image tag commands?

What is the difference between the docker tag and docker image tag commands?

Upvotes: 0

Views: 2977

Answers (1)

Leonardo Dagnino
Leonardo Dagnino

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

Related Questions