From 438cd35436139dca980ad8cd7d1e619cc76ca856 Mon Sep 17 00:00:00 2001 From: Vuong Hoang Date: Fri, 17 Jul 2026 22:54:34 -0700 Subject: [PATCH] =?UTF-8?q?docs(zonos-gateway):=20sync=20mirror=20compose?= =?UTF-8?q?=20=E2=80=94=20host-managed=20voices=20bind-mount=20(Emmie)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reflects the deployed change: ./voices:/app/voices:ro so voices are a filesystem drop-in. Emmie voice added + committed to vh/zonos-gateway. --- stacks/zonos-gateway/compose.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stacks/zonos-gateway/compose.yaml b/stacks/zonos-gateway/compose.yaml index c5b448a..ea13437 100644 --- a/stacks/zonos-gateway/compose.yaml +++ b/stacks/zonos-gateway/compose.yaml @@ -19,6 +19,11 @@ services: DEFAULT_VOICE: ${DEFAULT_VOICE:-Cora} VOICES_DIR: /app/voices REQUEST_TIMEOUT_S: ${REQUEST_TIMEOUT_S:-600} + volumes: + # Host-managed voices (2026-07-17): drop .wav in ./voices + restart + # -> selectable as voice:"Name", no image rebuild (matches the registry's + # filesystem-drop-in design). Emmie added this way. + - ./voices:/app/voices:ro ports: - "${PORT:-8890}:8890" healthcheck: