How to pull specific version of docker image
- Bilal Malik
- Jul 25, 2019
- 1 min read
It is very easy! first, we need to find the docker image and their available tags in docker hub. After that, we can pull the image with the version by using the below command.
The formula to pull the specific version
docker pull image-name:tag-name
For ubuntu latest version
docker pull ubuntu
For ubuntu 16.04 version
docker pull ubuntu:16.04
For ubuntu 18.04 version
docker pull ubuntu:18.04
Comments