File size: 587 Bytes
7f105c8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
services:
  backend:
    build: ./backend
    ports:
      - "8000:8000"
    volumes:
      - ./backend:/app
      - ./scripts:/app/scripts
      - ./data:/app/external_data
      - ./model:/app/external_model
      - hf_cache:/root/.cache/huggingface
    env_file:
      - ./backend/.env
    dns:
      - 8.8.8.8
      - 1.1.1.1
    # LibreOffice ODT 변환 후 H2Orestart cleanup 버그로 segfault 발생.
    # 코어 덤프 비활성화 (RLIMIT_CORE=0) — wsl-crashes 누적 → 디스크 마비 방지.
    ulimits:
      core: 0
    restart: unless-stopped

volumes:
  hf_cache: