Spaces:
Sleeping
Sleeping
File size: 725 Bytes
2043afa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | version: "3.9"
services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
container_name: polypharmacy-backend
env_file:
- .env
ports:
- "7860:7860"
volumes:
- ./backend/src:/app/backend/src
- ./data:/app/data
- ./scripts:/app/scripts
- ./backend:/app/backend
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/health"]
interval: 20s
timeout: 5s
retries: 5
frontend:
build:
context: .
dockerfile: frontend/Dockerfile
container_name: polypharmacy-frontend
depends_on:
- backend
ports:
- "5173:5173"
volumes:
- ./frontend:/app
- /app/node_modules
|