fix: use absolute volume paths for pihole, faster-whisper, open-webui

This commit is contained in:
2026-05-07 13:17:31 +00:00
parent 575c1fee9c
commit 7c419dfe72
+4 -5
View File
@@ -10,7 +10,7 @@ services:
TZ: "America/Chicago" TZ: "America/Chicago"
FTLCONF_misc_dnsmasq_lines: "dns-forward-max=300" FTLCONF_misc_dnsmasq_lines: "dns-forward-max=300"
volumes: volumes:
- ./pihole:/etc/pihole - /srv/docker/pihole/pihole:/etc/pihole
# Wyoming Protocol for Home Assistant # Wyoming Protocol for Home Assistant
faster-whisper: faster-whisper:
@@ -23,7 +23,7 @@ services:
- WHISPER_MODEL=base - WHISPER_MODEL=base
- WHISPER_LAN=en - WHISPER_LAN=en
volumes: volumes:
- ./faster-whisper/config:/config - /srv/docker/pihole/faster-whisper/config:/config
ports: ports:
- 10300:10300 - 10300:10300
restart: unless-stopped restart: unless-stopped
@@ -35,7 +35,7 @@ services:
ports: ports:
- "8000:8000" - "8000:8000"
volumes: volumes:
- ./faster-whisper/models:/root/.cache/huggingface - /srv/docker/pihole/faster-whisper/models:/root/.cache/huggingface
environment: environment:
- WHISPER_MODEL=base - WHISPER_MODEL=base
restart: unless-stopped restart: unless-stopped
@@ -47,11 +47,10 @@ services:
ports: ports:
- "3000:8080" - "3000:8080"
volumes: volumes:
- ./open-webui/data:/app/backend/data - /srv/docker/pihole/open-webui/data:/app/backend/data
environment: environment:
- TZ=America/Chicago - TZ=America/Chicago
- OLLAMA_BASE_URL=http://192.168.88.41:11434 - OLLAMA_BASE_URL=http://192.168.88.41:11434
# Voice-to-Text (STT) Settings
- WHISPER_API_BASE_URL=http://faster-whisper-server:8000/v1 - WHISPER_API_BASE_URL=http://faster-whisper-server:8000/v1
- AUDIO_STT_ENGINE=openai - AUDIO_STT_ENGINE=openai
- AUDIO_STT_OPENAI_API_BASE_URL=http://faster-whisper-server:8000/v1 - AUDIO_STT_OPENAI_API_BASE_URL=http://faster-whisper-server:8000/v1