Files
medassist-ng/docker-compose.yml
T
2025-12-19 13:09:53 +01:00

25 lines
434 B
YAML

services:
backend:
build:
context: ./backend
env_file:
- .env
volumes:
- ./backend/data:/app/data
ports:
- "3000:3000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
frontend:
build:
context: ./frontend
ports:
- "4173:80"
depends_on:
- backend