Docker Cheatsheet

Minimal Workflow

docker init
docker compose up --build
docker compose up --build -d #run_in_background
docker compose down #stop

Managing Containers

NameCommand
Starting Containersdocker container start nginx
Stopping Containersdocker container stop nginx
Restarting Containersdocker container restart nginx
Pausing Containersdocker container pause nginx
Unpausing Containersdocker container unpause nginx
Blocking a Containerdocker container wait nginx
Sending SIGKILL Containersdocker container kill nginx
Sending another signaldocker container kill -s HUP nginx
Connecting to an Existing Containerdocker container attach nginx
Check the Containersdocker ps
To see all running containersdocker container ls
Container Logsdocker logs infinite
‘tail -f’ Containers’ Logsdocker container logs infinite -f
Inspecting Containersdocker container inspect infinite
Inspecting Containers for certaindocker container inspect –format ‘{{ .NetworkSettings.IPAddress }}’ $(docker ps -q)
Containers Eventsdocker system events infinite
docker system events infinitedocker container port infinite
Running Processesdocker container top infinite
Container Resource Usagedocker container stats infinite
Inspecting changes to files or directories on a container’s filesystemdocker container diff infinite

Manage Images

NameCommand
Listing Imagesdocker image ls
Building Imagesdocker build.
From a Remote GIT Repositorydocker build github.com/creack/docker-firefox
Instead of Specifying a Context, You Can Pass a Single Dockerfile in the URL or Pipe the File in via STDINdocker build – < Dockerfile
Building and Taggingdocker build -t eon/infinite.
Building a Dockerfile while Specifying the Build Contextdocker build -f myOtherDockerfile.
Building from a Remote Dockerfile URIcurl example.com/remote/Dockerfile|docker build -f – .
Removing an Imagedocker image rm nginx
Loading a Tarred Repository from a File or the Standard Input Streamdocker image load < ubuntu.tar.gz
Saving an Image to a Tar Archivedocker image save busybox > ubuntu.tar
Showing the History of an Imagedocker image history
Creating an Image From a Containerdocker container commit nginx
Tagging an Imagedocker image tag nginx eon01/nginx
Pushing an Imagedocker image push eon01/nginx

Removing Images

NameCommand
Removing a Running Containerdocker container rm nginx
Removing a Container and its Volumedocker container rm -v nginx
Removing all Exited Containersdocker container rm $(docker container ls -a -f status=exited -q)
Removing All Stopped Containersdocker container rm docker container ls -a -q
Removing a Docker Imagedocker image rm nginx
Removing Dangling Imagesdocker image rm $(docker image ls -f dangling=true -q)
Removing all Imagesdocker image rm $(docker image ls -a -q)
Removing all Untagged Imagesdocker image rm -f (docker image ls \|grep “^”\|awk “{print 3}”)
Stopping & Removing all Containersdocker container stop (docker container ls -a -q) && docker container rm (docker container ls -a -q)
Removing Dangling Volumesdocker volume rm $(docker volume ls -f dangling=true -q)
Removing all unused (containers, images, networks and volumes)docker system prune -f
Clean alldocker system prune -a

Dockerfile Commands

CommandDescriptionExample
FROMSpecifies the base image for the buildFROM ubuntu:latest
RUNExecutes a command inside the container during build timeRUN apt-get update && apt-get install -y curl
CMDSpecifies the default command to run when the container startsCMD [“npm”, “start”]
EXPOSEInforms Docker that the container listens on specific network ports at runtimeEXPOSE 80/tcp
ENVSets environment variables inside the containerENV NODE_ENV=production
COPYCopies files or directories from the build context into the containerCOPY app.js /usr/src/app/
ADDSimilar to COPY but supports additional features like URL retrieval and decompressionADD https://example.com/file.tar.gz /usr/src/
WORKDIRSets the working directory for subsequent instructionsWORKDIR /usr/src/app
ARGDefines variables that users can pass at build-time to the builder with the docker build commandARG VERSION=1.0
ENTRYPOINTConfigures a container to run as an executableENTRYPOINT [“python”, “app.py”]
VOLUMECreates a mount point and assigns it to a specified volumeVOLUME /data
USERSets the user or UID to use when running the imageUSER appuser
LABELAdds metadata to an image in the form of key-value pairsLABEL version=”1.0″ maintainer=”John Doe
ONBUILDConfigures commands to run when the image is used as the base for another buildONBUILD ADD . /app/src

Volume Commands

CommandDescriptionExample
volume createCreates a named volumedocker volume create mydata
volume lsLists the available volumesdocker volume ls
volume inspectDisplays detailed information about a volumedocker volume inspect mydata
volume rmRemoves one or more volumesdocker volume rm mydata
volume pruneRemoves all unused volumesdocker volume prune