16 lines
558 B
YAML
16 lines
558 B
YAML
services:
|
|
wyoming-chatterbox:
|
|
build: .
|
|
container_name: wyoming-chatterbox
|
|
restart: unless-stopped
|
|
ports:
|
|
- "10201:10201"
|
|
command: python /app/wyoming-chatterbox.py --port 10201 --chatterbox-url http://10.2.1.104:8004 --voice homer.mp3
|
|
|
|
wyoming-whisper:
|
|
build: .
|
|
container_name: wyoming-whisper
|
|
restart: unless-stopped
|
|
ports:
|
|
- "10202:10202"
|
|
command: python /app/wyoming-faster-whisper.py --port 10202 --whisper-url http://10.2.1.104:8005 --model deepdml/faster-whisper-large-v3-turbo-ct2 --language de
|