Skip to content

Commit 4cd4efb

Browse files
authored
add docker compose sample (#89)
* add docker compose sample * Update README.md
1 parent d836a9e commit 4cd4efb

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,19 @@ Depending on your use case there are different installation options.
6161
docker run ghcr.io/hugobloem/wyoming-microsoft-stt-noha:latest --<key> <value>
6262
```
6363
For the relevant keys please look at [the table below](#usage)
64+
65+
- **docker compose**
66+
67+
Below is a sample for a docker compose file. The azure region + subscription key can be set in environment variables. Everything else needs to be passed via command line arguments.
68+
69+
```yaml
70+
wyoming-proxy-azure-stt:
71+
image: ghcr.io/hugobloem/wyoming-microsoft-stt-noha
72+
container_name: wyoming-azure-stt
73+
ports:
74+
- "10300:10300"
75+
environment:
76+
AZURE_SERVICE_REGION: swedencentral
77+
AZURE_SUBSCRIPTION_KEY: XXX
78+
command: --language=en-GB,nl-NL --uri=tcp://0.0.0.0:10300
79+
```

0 commit comments

Comments
 (0)