Files
projects/Dockers/ocr-api/docker-compose.yml
T
Bram fed33b7623
Build and Push Docker Images / build-and-push (push) Failing after 2m5s
ocr api
2025-07-17 16:00:42 +02:00

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