// This guide covers 80% of daily Docker workflows. For advanced use cases (e.g., Docker Compose, Swarm), refer to the official Docker documentation
List Downloaded Images
docker images
Remove an Image
docker image rm <image_name/id> -f
-f
: Force deletion (even if the image is in use).docker rmi $(docker images -q)
Build an Image from a Dockerfile
docker build -t <image_name>:<image_version> <path_to_dockerfile>
docker build -t myapp:v1.3.17 .
List Containers
docker ps
docker ps -a
Run a Container
docker run [options] <image>
-d # Run in detached mode
-p 8080:80 # Map host port to container port
-v /host/path:/container/path # Mount a volume
-e ENV_VAR=value # Set environment variable
--name <container_name> # Assign a custom name
Lifecycle Management
docker start <container>
docker stop <container>
docker restart <container>
docker rm <container>
docker container prune
Interact with Containers
docker logs <container>
docker exec -it <container> /bin/bash
docker stats
Volume Management
docker volume ls
docker volume create <volume_name>
Network Management
docker network ls
docker network connect <network> <container>
Inspect Details
docker inspect <container/image>
Clean Unused Resources
docker system prune -a
Real-Time Log Streaming
docker logs -f <container>
-f
: Follow logs in real-time (similar to tail -f
).Copy Files Between Host and Container
docker cp <container>:<path> <host_path> # Copy from container
docker cp <host_path> <container>:<path> # Copy to container
Save/Load Images as Files
docker save -o <file.tar> <image>
docker load -i <file.tar>