Docker basics
From Notes_Wiki
<yambe:breadcrumb>Docker|Docker</yambe:breadcrumb>
Docker basics
Run a docker image
To run a docker image use
docker run hello-world
Docker first searches for image locally. If it is not found then it will download the image from docker hub and run it.
See local docker images in cache
To see local docker images in cache use:
docker images
Docker basics are learned from https://docs.docker.com/linux/started/
<yambe:breadcrumb>Docker|Docker</yambe:breadcrumb>