File size: 451 Bytes
d5b7ee9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
services:
  trading-cli:
    build:
      context: .
      dockerfile: Dockerfile
    image: ai-trading:latest
    container_name: trading-cli
    environment:
      - TOKENIZERS_PARALLELISM=false
      - TRANSFORMERS_VERBOSITY=error
      - HF_HUB_DISABLE_TELEMETRY=1
      - TQDM_DISABLE=1
    volumes:
      - hf-cache:/root/.cache/huggingface
    stdin_open: true
    tty: true
    restart: unless-stopped

volumes:
  hf-cache:
    name: hf-cache