Image management

Image management

Images are served from Docker Hub by default

Official images for many distributions and services

Community images can be uploaded by anyone

Images are named [user/]name:tag

Pulling official images:

docker pull ubuntu
docker pull ubuntu:20.04
docker images
docker rmi ubuntu
docker images

Pulling community images:

docker pull nicholasdille/sleeper
docker images