diff options
Diffstat (limited to 'internal/openwakeword')
-rw-r--r-- | internal/openwakeword/compose.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/internal/openwakeword/compose.yaml b/internal/openwakeword/compose.yaml new file mode 100644 index 0000000..57f6855 --- /dev/null +++ b/internal/openwakeword/compose.yaml @@ -0,0 +1,16 @@ +name: openwakeword +version: '3.8' +services: + openwakeword: + container_name: openwakeword + image: rhasspy/wyoming-openwakeword + user: 1001:1001 + volumes: + - "${OWW_DATA_PATH}:/data" + - "${OWW_CUSTOM_PATH}:/custom" + environment: + - TZ=America/Chicago + command: --preload-model 'ok_nabu' --custom-model-dir /custom + restart: unless-stopped + ports: + - ${OWW_PORT}:10400 |