services: wedding-web: image: nginx:alpine container_name: wedding-web restart: unless-stopped ports: - "127.0.0.1:8080:80" volumes: - ./frontend/public:/usr/share/nginx/html:ro backend: build: ./backend container_name: wedding-backend restart: unless-stopped ports: - "127.0.0.1:5000:5000" volumes: - ./data/uploads:/app/uploads