16 lines
348 B
YAML
16 lines
348 B
YAML
services:
|
|
ocr-extractor:
|
|
build: .
|
|
container_name: ocr-receipt-extractor
|
|
ports:
|
|
- "5000:5000"
|
|
restart: unless-stopped
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:5000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 10s
|