Day 20 of My 90-Day DevOps Challenge: Docker Mastery - Cheat-Sheet!

Introduction
Docker has revolutionized containerization, making it easier to develop, ship, and run applications in isolated environments. Whether you're a beginner or an experienced DevOps engineer, having a cheat sheet can be a game-changer. This guide covers essential Docker and Docker Compose commands to boost your productivity. π
π³ Docker Basics
1οΈβ£ Container Lifecycle Commands
docker run -d --name my_container image_name
β Run a container in detached modedocker ps
β List running containersdocker ps -a
β List all containersdocker stop container_id
β Stop a running containerdocker start container_id
β Start a stopped containerdocker restart container_id
β Restart a containerdocker rm container_id
β Remove a containerdocker logs container_id
β View container logsdocker exec -it container_id bash
β Access the container shelldocker kill container_id
β Force-stop a container
π¦ Image Management
docker images
β List available imagesdocker pull image_name
β Download an image from Docker Hubdocker build -t my_image .
β Build an image from a Dockerfiledocker tag image_id myrepo/myimage:latest
β Tag an imagedocker push myrepo/myimage:latest
β Push an image to Docker Hubdocker rmi image_id
β Remove an image
π Volumes & Bind Mounts
docker volume create my_volume
β Create a Docker volumedocker volume ls
β List all volumesdocker volume inspect my_volume
β Inspect volume detailsdocker volume rm my_volume
β Remove a volumedocker run -v my_volume:/data image_name
β Attach a volume to a containerdocker run -v $(pwd)/data:/container_data image_name
β Use bind mount
π Networking
docker network ls
β List available networksdocker network create my_network
β Create a new networkdocker network inspect my_network
β Inspect network detailsdocker network connect my_network container_id
β Connect a container to a networkdocker network disconnect my_network container_id
β Disconnect a container from a network
π Docker Compose Commands
Docker Compose simplifies managing multi-container applications using a docker-compose.yml
file.
docker-compose up -d
β Start all services in detached modedocker-compose down
β Stop and remove all containersdocker-compose ps
β List running servicesdocker-compose logs -f
β View real-time logsdocker-compose build
β Build services from the compose filedocker-compose restart
β Restart all servicesdocker-compose exec service_name bash
β Access a running serviceβs shell
π― Conclusion
Mastering these Docker & Docker Compose commands will help you manage containers efficiently. Bookmark this cheat sheet π and share it with fellow DevOps learners!
If you found this helpful, share your thoughts in the comments. ππ¬
π Letβs keep learning and building! π₯
#DevOps #Docker #Containerization #90DaysOfDevOps
Subscribe to my newsletter
Read articles from Shubhranshu Ransingh directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
