Spaces:
Paused
Paused
File size: 478 Bytes
287f3d3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | version: "3.8"
services:
b2d-backend:
build:
context: .
dockerfile: Dockerfile
container_name: b2d-backend
restart: unless-stopped
ports:
- "8000:8000"
env_file:
- .env
environment:
- PORT=8000
volumes:
- ./data:/app/data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/api/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
|