Spaces:
Sleeping
Sleeping
File size: 958 Bytes
cb75c6a | 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 37 38 39 40 41 42 43 44 45 46 47 48 | <<<<<<< HEAD
services:
backend:
build: ./backend
ports:
- "8000:8000"
volumes:
- ./backend/database:/app/database
- ./backend/logs:/app/logs
environment:
- PYTHONUNBUFFERED=1
- PDF_PATH=/app/database/medical_book.pdf
restart: always
frontend:
build: ./frontend
ports:
- "80:80"
environment:
- VITE_API_URL=http://backend:8000
depends_on:
- backend
restart: always
=======
services:
backend:
build: ./backend
ports:
- "8000:8000"
volumes:
- ./backend/database:/app/database
- ./backend/logs:/app/logs
environment:
- PYTHONUNBUFFERED=1
- PDF_PATH=/app/database/medical_book.pdf
restart: always
frontend:
build: ./frontend
ports:
- "80:80"
environment:
- VITE_API_URL=http://backend:8000
depends_on:
- backend
restart: always
>>>>>>> b0044def6f1fc3a036140e06b7f1edf4f0c21539
|