File size: 271 Bytes
0c6d0a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: "3.8"

services:
  ocr-app:
    build: .
    container_name: ocr-app
    ports:
      - "5000:5000"
    restart: always
    volumes:
      # Persist HuggingFace model cache across container restarts
      - hf-cache:/app/.cache/huggingface

volumes:
  hf-cache: