Spaces:
Running
Running
File size: 415 Bytes
5e8f045 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
version: '3.8'
services:
freshqa-leaderboard:
build: .
ports:
- "7860:7860"
environment:
- UPSTAGE_API_KEY=${UPSTAGE_API_KEY}
volumes:
- ./datasets:/app/datasets
- ./results:/app/results
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
|