version: "3.8" services: backend: build: context: ./apps/backend dockerfile: Dockerfile ports: - "8080:8080" environment: - ENV=${ENV:-development} restart: unless-stopped frontend: build: context: ./apps/web dockerfile: Dockerfile ports: - "3000:3000" environment: - API_URL=http://backend:8080 depends_on: - backend restart: unless-stopped