docker ps -a
docker images
docker start <name>
docker stop <name>
docker logs -f <name>
docker exec -it <name> sh
1. Docker Basics
Show Docker version information
Display system-wide Docker information
Show Docker help
2. Working with Images
Pull an image from a registry
List local images
Remove an image
Build an image from a Dockerfile
Save image to a tar archive
Load image from a tar archive
3. Registries
Log in to a registry
Log out from a registry
Push an image to a registry
Search Docker Hub
4. Containers
Run in detached mode with a name
Run interactively
List running containers
List all containers
Start a stopped container
Stop a running container
Restart a container
Remove a stopped container
Follow container logs
Run command in container
Copy from container to host
Container details (JSON)
5. Volumes
Create a volume
List volumes
Remove a volume
Remove unused volumes
6. Networks
List networks
Create a network
Remove a network
Remove unused networks
7. Monitoring
Live resource usage
Running processes
Real-time events
Disk usage
8. Cleanup
Remove unused data
Aggressive prune (all unused)
Remove stopped containers
Remove unused images
9. Docker Compose
Start services (detached)
Stop and remove services
List services
Follow logs
Build/rebuild services
Exec into service