File size: 245 Bytes
0b24cca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
services:
  app:
    build: .
    ports:
      - "7860:7860"
    volumes:
      - app-data:/app/data
    environment:
      - APP_MODE=local
      - STORAGE_ROOT=/app/data
      - LOG_LEVEL=info
    restart: unless-stopped

volumes:
  app-data: