Docker Compose

Piyush KabraPiyush Kabra
3 min read

1. What is Docker Compose?

Docker Compose is a tool for defining and managing multi-container Docker applications.

It allows developers to define the services, networks, and volumes needed for an application in a single docker-compose.yml file.

With Docker Compose, you can start, stop, and manage all the containers of your application using simple commands.


Key Features of Docker Compose :-

  • Multi-container management through a single YAML file.

  • Declarative configuration of services, networks, and volumes.

  • Simplified orchestration of linked services.

  • Support for environment variables and scaling.

  • Health checks for services.

2. Benefits of Using Docker Compose

  • Simplified Configuration: Centralized configuration in a YAML file.

  • Multi-Container Setup: Manage multiple containers as a single application.

  • Version Control: Easily version and share the configuration file.

  • Portability: Consistent environments across different systems.

  • Easy Maintenance: Start, stop, and manage services with a single command.

3. Writing a docker-compose.yml File

The docker-compose.yml file defines services, networks, and volumes in a YAML format.

Basic Structure:

version: '3.9'
services:
  web:
    image: nginx:latest
    ports:
      - '80:80'
    networks:
      - webnet

networks:
  webnet:

Defining Services

A service represents a container with specific configurations (image, ports, volumes, etc.).

Defining Networks

Networks allow communication between services.

Defining Volumes

Volumes are used to persist data between container restarts.

4. Docker Compose Commands

Here are some essential commands to manage services using Docker Compose:

  • Start services:

      docker-compose up
      "start the services in docker compose file":
      "creates Network also automatically":
    

    Starts all the services defined in the docker-compose.yml file.

  • Stop services:

      docker-compose down
      "stops & removes all running Services":
    

    Stops and removes all running services and networks.

  • List running services:

      docker-compose ps
      "List All the conatiners & services running from the docker-compose.yml file":
    

    Shows the status of running services.

5. Environment Variables in Docker Compose

You can use environment variables to manage dynamic values. Define them in a .env file or directly in the docker-compose.yml file.

Example:

services:
  db:
    image: postgres:latest
    environment:
      POSTGRES_USER: ${DB_USER}
      POSTGRES_PASSWORD: ${DB_PASSWORD}

6. Scaling Services with Docker Compose

You can scale services horizontally by specifying the number of replicas.

docker-compose up --scale web=3

This command scales the web service to three replicas.

7. Linking Services and Container-to-Container Communication

Compose allows you to link services by specifying networks. Containers within the same network can communicate using the service name.

Example:

services:
  app:
    image: myapp:latest
    networks:
      - appnet
  db:
    image: postgres:latest
    networks:
      - appnet

networks:
  appnet:

8. Health Checks in Docker Compose

Health checks ensure that your services are running properly.

Example:

services:
  web:
    image: nginx:latest
    healthcheck:
      test: ["CMD", "curl", "-f", "http://localhost:80"]
      interval: 30s       # Time between checks (default: 30 seconds)
      timeout: 10s        # Maximum time to allow the command to run (default: 30 seconds)
      retries: 3          # Number of retries before marking as unhealthy (default: 3)
      start_period: 5s    # Startup time before the health check starts (default: 0)

This checks the health of the web service every 30 seconds.

2 Interview Questions:-

  • How will you ensure that container 1 runs before container 2 while using docker-compose?

  • Can we use JSON instead of YAML while developing a docker-compose file in Docker?

0
Subscribe to my newsletter

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

Written by

Piyush Kabra
Piyush Kabra