challange29102025/docker-compose.yml
2025-10-31 11:08:46 +01:00

26 lines
430 B
YAML

version: '3.8'
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "3990:3990"
volumes:
- ./data:/app/data
environment:
- NODE_ENV=production
- PORT=3990
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "3980:80"
depends_on:
- backend
restart: unless-stopped