File size: 374 Bytes
c30f358
 
 
 
 
 
005f702
c30f358
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: '3.10'

services:
  app:
    build: .
    ports:
      - "7860:7860"
    volumes:
      - huggingface_cache:/root/.cache/huggingface
    environment:
      - MODEL_PATH=RufusRubin777/GOT-OCR2_0_CPU
    restart: unless-stopped
    deploy:
      resources:
        limits:
          memory: 4G
        reservations:
          memory: 2G

volumes:
  huggingface_cache: