Files
Wedding-Website/docker-compose.yml
2026-02-09 20:44:14 +00:00

19 lines
399 B
YAML

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