diff --git a/docs/manual/server/self-hosting/customization.md b/docs/manual/server/self-hosting/customization.md index a955fde..1220b9d 100644 --- a/docs/manual/server/self-hosting/customization.md +++ b/docs/manual/server/self-hosting/customization.md @@ -46,7 +46,7 @@ Update the `asciinema` container image tag to `custom`: ```diff title="docker-compose.yml" services: asciinema: -- image: ghcr.io/asciinema/asciinema-server:20240324 +- image: ghcr.io/asciinema/asciinema-server:20240428 + 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 860818e..11091f0 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:20240324 + image: ghcr.io/asciinema/asciinema-server:20240428 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:20240324 + image: ghcr.io/asciinema/asciinema-server:20240428 ports: - '80:4000' environment: @@ -110,7 +110,7 @@ a template. Let's break it down. -The `asciinema` container uses a server image version tagged `20240324`. This is +The `asciinema` container uses a server image version tagged `20240428`. 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 321c40a..350c656 100644 --- a/docs/manual/server/self-hosting/upgrading.md +++ b/docs/manual/server/self-hosting/upgrading.md @@ -18,8 +18,8 @@ Usually, it's a matter of updating the container image tag: ```diff title="docker-compose.yml" services: asciinema: -- image: ghcr.io/asciinema/asciinema-server:20240203 -+ image: ghcr.io/asciinema/asciinema-server:20240324 +- image: ghcr.io/asciinema/asciinema-server:20240324 ++ image: ghcr.io/asciinema/asciinema-server:20240428 # ... ```