Docker Cheat Sheet — Commands, Dockerfile & Compose Free

Complete Docker reference: containers, images, volumes, networks, Dockerfile, and Docker Compose. All commands with examples. Free Docker cheat sheet.

Help Us Improve
Be the first to rate!

Frequently Asked Questions

How do I use Docker Cheat Sheet?
Browse by category (containers, images, volumes, Dockerfile) or search by command. Each entry shows the full syntax and a practical example.
Is Docker Cheat Sheet free?
Yes, Docker Cheat Sheet on ToolPix is 100% free with no signup or installation required.
Is my data safe?
This is a static reference tool. No data is entered or transmitted.
What is the difference between docker stop and docker kill?
docker stop sends SIGTERM, giving the container time to shut down gracefully. docker kill sends SIGKILL immediately — use it when stop hangs.
How do I remove all stopped containers and unused images?
Run docker system prune to remove stopped containers, unused networks, and dangling images. Add -a to also remove unused images that are not tagged.