code.liveNewsScore
Back to Tools

Docker Compose Builder

Add services with images, ports, environment variables, and volumes to visually build a docker-compose.yml file.

Services

Service
comma-separated
comma-separated KEY=value
comma-separated
docker-compose.ymlyaml
services:
  app:
    image: node:22-alpine
    ports:
      - "3000:3000"
    environment:
      - "NODE_ENV=production"
    volumes:
      - ".:/app"