Dev Tool
Docker Compose Generator
Build docker-compose.yml files visually. Add services, configure ports, env vars, volumes and preview live YAML.
โ๏ธCompose Settings
๐ณServices
Quick add preset:
๐ณ nginxnginx:alpine
โฒ
Add more services first
๐YAML Preview
"text-purple-400">version: '3.8' "text-purple-400">services: "text-blue-400">nginx: "text-cyan-400">image: nginx:alpine "text-cyan-400">container_name: nginx "text-cyan-400">restart: unless-stopped "text-cyan-400">ports: - "80:80" - "443:443" "text-cyan-400">volumes: - ./nginx.conf:/etc/nginx/nginx.conf:ro