skip to Main Content

As of now, I am learning Docker. This reference has mentioned two ways of pulling an image from the Docker registry. Can anyone explain this in simple terms?

Does this mean that we cannot get updates on a pulled image if we use docker image pull command?

2

Answers


  1. What is the difference between docker pull and docker image pull commands?

    None.

    Can anyone explain this in simple terms?

    They are the same.

    Does this mean that we cannot get updates on a pulled image if we use docker image pull command?

    No.

    Also https://forums.docker.com/t/docker-pull-imagename-vs-docker-image-pull-imagename/59283

    Login or Signup to reply.
  2. They are the same command. From the documentation you linked:

    To download a particular image, or set of images (i.e., a repository), use docker image pull (or the docker pull shorthand).

    There are many "shortand commands" like:

    • docker push for docker image push
    • docker run for docker container run
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search