20 lines
435 B
YAML
20 lines
435 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
ocr-api:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
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
|