Docker CLI Cheatsheet - Command Reference
A Docker command reference for app developers and SREs, covering image build, container lifecycle, networks & volumes, Compose orchestration, and resource cleanup. Unlike OS-level container tools, Docker layered images and isolation are what matter when you must debug startup failures, mapping mistakes, or image bloat. By the end you can bring a service up from an image and troubleshoot the three most frequent problems: startup, networking, and disk usage.
Image 8
docker imagesdocker pull nginx:alpinedocker build -t app:1.0 .docker rmi <image>docker tag app:1.0 reg/app:1.0docker save -o app.tar app:1.0docker load -i app.tardocker pull alpine:3.20 --platform=linux/amd64Container 9
docker ps -adocker run -d -p 8080:80 --name web nginxdocker exec -it web shdocker logs -f --tail 100 webdocker stop web && docker rm webdocker inspect webdocker start web && docker restart webdocker statsdocker top webNetwork & Volume 8
docker network lsdocker network create appnetdocker network connect appnet webdocker volume lsdocker run -v data:/var/lib/app appdocker run -v $(pwd):/app appdocker volume create appdatadocker volume pruneRegistry 6
docker logindocker login registry.example.comdocker push app:1.0docker pull ubuntu:22.04docker search nginxdocker logoutBuild & Debug 7
docker build -t app:1.0 --no-cache .docker build -t app:1.0 --target=dev .docker history app:1.0docker diff <container>docker cp app.conf web:/etc/nginx/conf.d/docker cp web:/var/log/nginx/access.log ./docker events --since 5mCompose & Cleanup 9
docker compose up -ddocker compose logs -f svcdocker compose downdocker compose psdocker compose restartdocker system dfdocker system prune -adocker container prunedocker image prune -aFAQ 5
Q: How to clean up all unused Docker resources?Q: How to view container logs?Q: How to enter a running container?Q: How to copy files between host and container?Q: What restart policies are available?Typical Use Case
This works along two lines: local development and production deployment. Locally, use docker run to start a port-mapped dependency service (nginx, MySQL, Redis) quickly, or bind-mount the source directory for hot-reload debugging; use docker compose up -d to bring up a whole multi-service environment at once. In production, build and push to a private registry with docker build/push, then pull and run on the target host. When a service misbehaves, confirm the container is alive with docker ps, read app logs with docker logs, inspect network and mounts with docker inspect, and re-verify config with docker exec. On disk alarms or image accumulation, locate the usage with docker system df and clean up as needed with docker image prune.
Command Examples
Run nginx in the background with a port mapping
docker run -d --name web -p 8080:80 nginx:alpine-p 8080:80 表示宿主机 8080 转发到容器 80,访问 http://localhost:8080 即可看到 nginx 欢迎页;-d 让容器后台运行,--name 便于后续用名字管理。
Output
b3f2c1a9d8e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b
Bind-mount the current directory and enter an interactive shell
docker run -it --rm -v "$(pwd)":/app -w /app node:18-alpine sh-v 把当前目录挂载到容器 /app,-w 设为工作目录,--rm 退出时自动删除容器,-it 提供交互终端,适合本地调试 Node 应用而无需本地安装 Node。
Follow the last 100 lines of a container log
docker logs -f --tail 100 web-f 实时跟踪后续日志,--tail 100 只从最后 100 行开始输出,排查启动崩溃或请求异常时第一命令。
Prune unused images to free disk space
docker system df先 docker system df 看占用,再决定是否 docker image prune -a 清理所有未被容器引用的镜像;删镜像前务必确认没有需要保留的版本。
Output
TYPE TOTAL ACTIVE SIZE RECLAIMABLE Images 12 5 1.4GB 621.5MB (43%) Containers 8 3 5.6MB 5.6MB (100%)
Common Pitfalls
- docker run -p is host_port:container_port — reversed means external access never works, and it fails silently, the hardest thing to debug.
- prune -a removes every image no container is using, including freshly built but not-yet-run versions. Run docker images first on production.
- An "executable file not found" error usually means the image lacks that shell; Alpine ships only sh, so use docker exec -it <c> sh.
- Flags like -e env vars and port mappings cannot be changed after the container starts; you must stop, remove, and re-run.
- A permission denied on bind mounts often comes from a mismatch between the host directory owner and the container user.
Tips
- In docker run -p, it's host_port:container_port — reversing them blocks external access.
- If exec says "executable file not found", switch to sh: Alpine images usually lack bash.
- prune -a removes all images not used by any container — verify with docker images first on production.
- docker system df quickly shows disk usage — run it periodically to avoid /var/lib/docker filling up.
- docker compose restart is faster than down/up and does not rebuild networks or volumes — best for nginx config changes.
FAQ
What is the difference between docker run and docker start?
docker run creates and starts a new container from an image (first launch); docker start restarts an existing but stopped container without creating a new instance. Use start to debug existing state, run to deploy new services.
How do I free up disk space used by Docker?
Use docker system prune to remove stopped containers, dangling images, and build cache; add -a to also remove all images not referenced by any container. Use cautiously in production to avoid deleting valuable images.
What is the relationship between a container and an image?
An image is a read-only template containing the code, dependencies, and config needed to run an app; a container is a running instance of that image with a writable layer on top. One image can launch multiple isolated containers.
Why does my container exit immediately with status Exited (0)?
Check the exit code with docker ps -a: Exited (0) usually means the foreground process did not stay alive (the command finished and exited), so use -it or switch to a foreground command in the Dockerfile (e.g. CMD ["nginx","-g","daemon off;"]). For non-zero codes, run docker logs <id> to read the real error, usually a missing dependency, permission, or wrong config path.
Why can I not reach localhost from inside a container?
Inside a container, localhost refers to the container itself, not the host, so host services are unreachable via localhost. To reach a host service, use the default bridge gateway IP (host.docker.internal on macOS/Windows, --network host or the host LAN IP on Linux). To make containers talk to each other, join them to a custom network and address them by container name.
Official References
Each command links to its official documentation below, so you can verify the latest usage and read deeper.
Maintained by LaoHand
Publicly updated on Jul 21, 2026, continuously proofread against official docs.
Contact Us
Wrong command or description? Send us corrections, business inquiries or product feedback by email.
Contact Us