ReadList #4 - Docker Compose & Docker Volumes:


A part of the 60-day ReadList series – Simplifying Docker & Kubernetes, one post at a time!
1. What is Docker Compose?
Docker Compose is a tool for defining and running multi-container Docker applications.
Instead of running multiple docker run
commands, you can define your application stack in a single YAML file.
Why Use Docker Compose?
Simplifies multi-container management
Provides a single command to start, stop, and rebuild services
Better organization of Docker infrastructure
Docker Compose File Structure (docker-compose.yml)
version: '3.8'
services:
web:
image: nginx:latest
ports:
- "80:80"
volumes:
- ./html:/usr/share/nginx/html
db:
image: mysql:8.0
environment:
MYSQL_ROOT_PASSWORD: example
volumes:
- db_data:/var/lib/mysql
volumes:
db_data:
Explanation:
services:
Defines different containers (e.g., web, db).image:
Image to use for each service.ports:
Mapping between host and container ports.volumes:
Persistent storage (explained below).environment:
Environment variables (useful for DB credentials, etc.).
2. Docker Volumes
Docker Volumes are used for persisting data generated or used by Docker containers.
Why Use Volumes?
Data is retained even if the container is deleted.
Can be shared between containers.
Improves performance compared to bind mounts.
Types of Volumes:
Type | Description | Example Usage |
Anonymous Volumes | Temporary storage, removed when container is deleted. | docker run -v /data nginx |
Named Volumes | Persistent storage, managed by Docker. | docker volume create myvolume |
Bind Mounts | Directly mount host directories into containers. | -v /host_path:/container_path |
Creating & Using Volumes in Docker Compose
Defining Volumes in docker-compose.yml
version: '3.8'
services:
app:
image: myapp
volumes:
- app_data:/app/data
volumes:
app_data:
- This will create a persistent volume named
app_data
managed by Docker.
Inspecting Volumes
docker volume ls
Removing a Volume
docker volume rm app_data
3. Docker Compose Commands
Task | Command |
Start services | docker-compose up |
Start in detached mode | docker-compose up -d |
Stop services | docker-compose down |
List running containers | docker-compose ps |
View logs | docker-compose logs |
4. Summary
Docker Compose makes managing multi-container apps easy and efficient.
Volumes ensure your data is persistent and accessible across containers.
Simplifies deployment by defining services in a single
.yml
file.
Stay tuned for upcoming posts about Kubernetes folks. Share your support through
Commenting and Like’s. Thanks for reading.
Subscribe to my newsletter
Read articles from VISHWA S directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

VISHWA S
VISHWA S
Hey there! I'm Vishwa, a DevOps Engineer. Curious about me? Check out my profile and posts, but here's a quick overview. I've spent the past two years building credibility, consistently working on projects, and upskilling myself. I'm a self-learner, and my posts reflect my journey. When it comes to technical expertise, I'm proficient in Linux, Networking, Shell Scripting, Docker, Ansible, Terraform, Kubernetes, Prometheus, Grafana, Loki, Jenkins, GitHub Actions, Python, Go, and Java. Wondering about my cloud experience? I'm well-versed in AWS, Digital Ocean, and GCP. I'm also skilled in troubleshooting. My ability to self-motivate and search for solutions allows me to quickly adapt to new technologies. And yes, I love writing. Sharing knowledge through blogs is something I’m passionate about. To reach out to Me, You can do DM and also leave an E-mail here at vishwa20042003@gmail.com, Waiting for your Connections and Opportunities.