diff --git a/ai.yaml b/ai.yaml new file mode 100644 index 0000000..890def4 --- /dev/null +++ b/ai.yaml @@ -0,0 +1,34 @@ +version: '3.7' +services: + + wyoming-piper: + image: rhasspy/wyoming-piper + container_name: Piper + restart: unless-stopped + stdin_open: true + tty: true + ports: + - 10200:10200 + volumes: + - /dockers/piper:/data + command: --voice en_US-lessac-medium + logging: + options: + max-size: "10m" + max-file: "3" + + wyoming-whisper: + image: rhasspy/wyoming-whisper + container_name: Whisper + restart: unless-stopped + stdin_open: true + tty: true + ports: + - 10300:10300 + volumes: + - /dockers/whisper:/data + command: --model tiny-int8 --language en + logging: + options: + max-size: "10m" + max-file: "3" \ No newline at end of file