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 mode

  • docker ps β†’ List running containers

  • docker ps -a β†’ List all containers

  • docker stop container_id β†’ Stop a running container

  • docker start container_id β†’ Start a stopped container

  • docker restart container_id β†’ Restart a container

  • docker rm container_id β†’ Remove a container

  • docker logs container_id β†’ View container logs

  • docker exec -it container_id bash β†’ Access the container shell

  • docker kill container_id β†’ Force-stop a container


πŸ“¦ Image Management

  • docker images β†’ List available images

  • docker pull image_name β†’ Download an image from Docker Hub

  • docker build -t my_image . β†’ Build an image from a Dockerfile

  • docker tag image_id myrepo/myimage:latest β†’ Tag an image

  • docker push myrepo/myimage:latest β†’ Push an image to Docker Hub

  • docker rmi image_id β†’ Remove an image


πŸ“‚ Volumes & Bind Mounts

  • docker volume create my_volume β†’ Create a Docker volume

  • docker volume ls β†’ List all volumes

  • docker volume inspect my_volume β†’ Inspect volume details

  • docker volume rm my_volume β†’ Remove a volume

  • docker run -v my_volume:/data image_name β†’ Attach a volume to a container

  • docker run -v $(pwd)/data:/container_data image_name β†’ Use bind mount


🌐 Networking

  • docker network ls β†’ List available networks

  • docker network create my_network β†’ Create a new network

  • docker network inspect my_network β†’ Inspect network details

  • docker network connect my_network container_id β†’ Connect a container to a network

  • docker 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 mode

  • docker-compose down β†’ Stop and remove all containers

  • docker-compose ps β†’ List running services

  • docker-compose logs -f β†’ View real-time logs

  • docker-compose build β†’ Build services from the compose file

  • docker-compose restart β†’ Restart all services

  • docker-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

0
Subscribe to my newsletter

Read articles from Shubhranshu Ransingh directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Shubhranshu Ransingh
Shubhranshu Ransingh