DOCKER IMAGE PULL
Commande : docker image pull
Usage: docker image pull [OPTIONS] NAME[:TAG|@DIGEST] Pull an image or a repository from a registry Options: -a, --all-tags Download all tagged images in the repository --disable-content-trust Skip image verification (default true)
Télécharger une image depuis le Docker Registry :
docker image pull [user/]image[:tag]
Equivaut à :
docker pull [user/]image[:tag]
ex :
$ docker pull ubuntu:latest
