B2D-agentic-ai / docker-compose.yml
AMRYB's picture
Upload 91 files
287f3d3 verified
Raw
History Blame Contribute Delete
478 Bytes
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