How do docker pull hello-world and docker run hello-world differ?
docker pull hello-world
docker run hello-world
Both commands only download the image and never create a container.
pull removes an image, while run stops a container.
pull
run
pull downloads the image, while run creates and starts a container from it.
pull builds a Dockerfile, while run only adds an image tag.