A complete visual and command-based guide to essential Docker operations β from running containers to cleaning up
system space.
Perfect for beginners who want a practical reference for everyday Docker tasks.
π Live site: https://someshdiwan.github.io/Docker-Guide/
This guide helps developers quickly recall Docker commands for:
- Operations β start, stop, rebuild, and manage containers
- Monitoring β check logs, health, and dashboards
- Cleanup β safely remove images, volumes, and cache
- Best Practices β optimize builds and maintain clean environments
The interface is minimal, responsive, and interactive β built using plain HTML, CSS, and JavaScript.
Docker-Guide/
βββ index.html # Main page with all sections
βββ styles.css # Styling for layout and design
βββ app.js # Tab switching logic
βββ LICENSE # MIT license
βββ README.md # Project overview
| π§ Action | π§° Command |
|---|---|
| Stop containers | docker compose down |
| Remove build cache | docker builder prune -af |
| Remove unused images | docker image prune -a -f |
| Clean containers/networks | docker container prune -f |
| Delete unused volumes | docker volume prune -f |
| Full cleanup (everything) | docker system prune -af |
π‘ Tip: Run docker system df before and after cleanup to see reclaimed space.
π License
This project is licensed under the MIT License β free to use, modify, and share.
Created by Somesh Diwan, Clean, interactive, and beginner-friendly Docker documentation.