25 lines
594 B
YAML
25 lines
594 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
ocr-api:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
- DEFAULT_MAX_WORKERS=${DEFAULT_MAX_WORKERS:-4}
|
|
- API_KEY=${API_KEY:-}
|
|
- REQUIRE_API_KEY=${REQUIRE_API_KEY:-true}
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
# Optional: mount a directory for testing with sample files
|
|
- ./test_files:/app/test_files:ro
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|