File size: 377 Bytes
d7efa84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: "3.8"

services:
  audio-labeling-tool:
    build: .
    ports:
      - "8501:8501"
    volumes:
      - /data/audio:/data/audio:ro
      - /data/references:/data/references:ro
      - /data/output:/data/output:rw
      - ./config.yaml:/app/config.yaml:ro
    environment:
      - ALT_CONFIG_PATH=/app/config.yaml
      - LOG_DIR=/app/logs
    restart: unless-stopped