debug-env / docker-compose.yml
hugsbun's picture
feat: complete debugging workflow with HuggingFace Inference API and OpenEnv Stage 1
2058884
Raw
History Blame Contribute Delete
430 Bytes
version: '3.8'
services:
debug-env:
build: .
ports:
- "8000:7860"
environment:
- PYTHONUNBUFFERED=1
- LOG_LEVEL=info
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/health"]
interval: 30s
timeout: 3s
retries: 3
start_period: 5s
restart: unless-stopped
networks:
- debug_env_network
networks:
debug_env_network:
driver: bridge