Docker Compose Builder

Visually build multi-container Docker applications and instantly generate perfect `docker-compose.yml` configurations.

Service #1: web

docker-compose.yml
version: '3.8'

services:
  web:
    image: nginx:latest
    restart: always
    ports:
      - "80:80"