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