Skip to content

Commit 2e56f51

Browse files
committed
Update docker
Signed-off-by: Michael Yuan <[email protected]>
1 parent a3b911c commit 2e56f51

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/server-vad/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This directory provides a single-stage runtime image that launches both `echokit_server` and `silero_vad_server` inside the same container.
44

5-
- **Runtime image** (`debian:bookworm-slim`): installs the runtime dependencies (adding `libopenblas` on arm64), selects the appropriate `libtorch` archive for the target architecture, and downloads the `v0.1.0` release binaries for `echokit_server`, `silero_vad_server`, and the `silero_vad.jit` model.
5+
- **Runtime image** (`debian:bookworm-slim`): installs the runtime dependencies (adding `libopenblas` on arm64), selects the appropriate `libtorch` archive for the target architecture, and downloads the `v0.1.1` release binaries for `echokit_server`, `silero_vad_server`, and the `silero_vad.jit` model.
66
- **Supervisor script**: `/usr/local/bin/start_servers.sh` starts both services, relays signals, and keeps the container alive while either process is running.
77

88
## Run
@@ -39,7 +39,7 @@ Use Buildx to produce and publish a multi-arch manifest in one command. BuildKit
3939
```sh
4040
docker buildx build \
4141
--platform linux/amd64,linux/arm64 \
42-
--build-arg ECHOKIT_VERSION=0.1.0 \
42+
--build-arg ECHOKIT_VERSION=0.1.1 \
4343
--build-arg VAD_VERSION=0.1.0 \
4444
-t secondstate/echokit:latest-server-vad \
4545
.

docker/server/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This directory contains a single-stage Dockerfile that produces a lean runtime image of `echokit_server` by downloading official release binaries.
44

5-
- **Runtime image** (`debian:bookworm-slim`): installs the required runtime libraries, fetches the architecture-specific tarball from GitHub releases (currently `v0.1.0`), places the `echokit_server` binary in `/usr/local/bin`, copies the default `config.toml`, and sets `RUST_LOG=info` before starting the server with that config.
5+
- **Runtime image** (`debian:bookworm-slim`): installs the required runtime libraries, fetches the architecture-specific tarball from GitHub releases (currently `v0.1.1`), places the `echokit_server` binary in `/usr/local/bin`, copies the default `config.toml`, and sets `RUST_LOG=info` before starting the server with that config.
66

77
## Run
88

@@ -33,7 +33,7 @@ Use Buildx to produce and publish a multi-arch manifest in one command. BuildKit
3333
```sh
3434
docker buildx build \
3535
--platform linux/amd64,linux/arm64 \
36-
--build-arg ECHOKIT_VERSION=0.1.0 \
36+
--build-arg ECHOKIT_VERSION=0.1.1 \
3737
--tag secondstate/echokit:latest-server \
3838
.
3939
```

0 commit comments

Comments
 (0)