Skip to content

Docker Compose

A tool for defining and running multi-container Docker applications

Minimal Example

docker-compose.yaml
version: "3.9"
services:
  app:
    build: .
    ports:
      - "3000:3000"
docker compose up

Last update: August 5, 2023
Created: May 27, 2023