File size: 561 Bytes
4952128
 
 
 
 
76dce3d
 
 
 
 
 
 
 
 
 
 
4952128
 
 
 
b8ee1e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: "3.7"

services:
  pyannote_speaker_diarization:
    image: pyannote-speaker-diarization:v0.1
    environment:
      - GIT_PYTHON_REFRESH=quiet
      - HUGGINGFACE_HUB_CACHE=/home/user/temp/.cache
      - TRANSFORMERS_CACHE=/home/user/temp/.cache
      - HF_HOME=/home/user/temp/.cache
      - TORCH_HOME=/home/user/temp/torch
      - TRANSFORMERS_OFFLINE=1
    tty: true
    stdin_open: true
    volumes:
      - ../torch/:/home/user/temp/torch
    build:
      context: .
    container_name: pyannote-speaker-diarization
    ports:
      - 8007:9000