diff --git a/docs/manual/server/self-hosting/customization.md b/docs/manual/server/self-hosting/customization.md index 8beb3fc..a85183d 100644 --- a/docs/manual/server/self-hosting/customization.md +++ b/docs/manual/server/self-hosting/customization.md @@ -50,7 +50,7 @@ Update the `asciinema` container image tag to `custom`: ```diff title="docker-compose.yml" services: asciinema: -- image: ghcr.io/asciinema/asciinema-server:20231120 +- image: ghcr.io/asciinema/asciinema-server:20231216 + image: ghcr.io/asciinema/asciinema-server:custom ``` diff --git a/docs/manual/server/self-hosting/quick-start.md b/docs/manual/server/self-hosting/quick-start.md index 6507bc8..43134db 100644 --- a/docs/manual/server/self-hosting/quick-start.md +++ b/docs/manual/server/self-hosting/quick-start.md @@ -26,7 +26,7 @@ a template. ```yaml title="docker-compose.yml" services: asciinema: - image: ghcr.io/asciinema/asciinema-server:20231120 + image: ghcr.io/asciinema/asciinema-server:20231216 environment: - SECRET_KEY_BASE= # <- see below - URL_HOST=asciinema.example.com @@ -75,7 +75,7 @@ a template. ```yaml title="docker-compose.yml" services: asciinema: - image: ghcr.io/asciinema/asciinema-server:20231120 + image: ghcr.io/asciinema/asciinema-server:20231216 ports: - '80:4000' environment: @@ -110,7 +110,7 @@ a template. Let's break it down. -The `asciinema` container uses a server image version tagged `20231120`. This is +The `asciinema` container uses a server image version tagged `20231216`. This is merely an example; please check the [releases](https://github.com/asciinema/asciinema-server/releases) page for the latest stable version number and use that instead. diff --git a/docs/manual/server/self-hosting/upgrading.md b/docs/manual/server/self-hosting/upgrading.md index 91cb3d8..e6d6a2e 100644 --- a/docs/manual/server/self-hosting/upgrading.md +++ b/docs/manual/server/self-hosting/upgrading.md @@ -19,7 +19,7 @@ Usually, it's a matter of updating the container image tag: services: asciinema: - image: ghcr.io/asciinema/asciinema-server:20231120 -+ image: ghcr.io/asciinema/asciinema-server:20231214 ++ image: ghcr.io/asciinema/asciinema-server:20231216 # ... ```