-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (31 loc) · 1.14 KB
/
docker-compose.yml
File metadata and controls
35 lines (31 loc) · 1.14 KB
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
26
27
28
29
30
31
32
33
34
35
services:
voxtral-wyoming:
build:
context: .
dockerfile: Dockerfile
image: voxtral-wyoming:latest
container_name: voxtral-wyoming
ports:
- "${PORT:-10300}:10300"
env_file: .env
environment:
# IP's used on the host machine are usually not available within the docker container, but will get used by the
# port definition made above.
- HOST=0.0.0.0
# port _within_ the container needs to be stable
- PORT=10300
- AUDIO_SAVE_DIR=/output/audio
- WORD_REPLACEMENTS_FILE=/config/word_replacements.txt
volumes:
# Mount local model directory (optional, for pre-downloaded models)
# Uncomment and adjust path if you have models stored locally
# - ./models:/models:ro
# Word replacements file for post-transcription corrections
- ./word_replacements.txt:/config/word_replacements.txt:ro
# Mount directory for saved audio files (when SAVE_AUDIO=true)
- ./output/audio:/output/audio
# Persist HuggingFace cache (optional)
- huggingface_cache:/home/appuser/.cache/huggingface
restart: unless-stopped
volumes:
huggingface_cache: