- Containers in OpenStack
- Pradeep Kumar Singh Madhuri Kumari
- 77字
- 2021-07-02 21:17:24
Getting new images
Docker will automatically download any image that is not present in the Docker host system. The docker pull subcommand will always download the image that has the latest tag in that repository if a tag is not provided. If a tag is provided, it pulls the specific image with that tag.
To pull a base image, do the following:
$ sudo docker pull Ubuntu # To pull specific version $ sudo docker pull ubuntu:16.04