CoolFace
Apppublic

Rootoor/doctr-ocr-service

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
docker-compose.yml25 linesDownload Raw Back to root
1services:2  doctr:3    build: .4    container_name: doctr-ocr5    ports:6      - "127.0.0.1:${PORT:-8001}:8000"7    volumes:8      # Cache models locally to avoid re-downloading on restart9      - doctr_models:/home/user/.cache/doctr10    restart: unless-stopped11    environment:12      - USE_TORCH=113      - API_KEY=${API_KEY}14    mem_limit: 1400m15    memswap_limit: 1400m16    healthcheck:17      test: ["CMD", "curl", "-f", "http://localhost:8000/health"]18      interval: 30s19      timeout: 10s20      retries: 321      start_period: 120s22 23volumes:24  doctr_models:25