Docker Commands

Docker Commands

# Images
docker build -t friendlyname .  # Create image using this directory's Dockerfile
docker image ls -a                             # List all images on this machine
docker image …
more ...