From ec0f836561878f29cb629816512fbb3e7781c795 Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Wed, 27 Mar 2024 10:28:25 +0100 Subject: [PATCH] Update example version tags --- docs/manual/server/self-hosting/customization.md | 2 +- docs/manual/server/self-hosting/quick-start.md | 6 +++--- docs/manual/server/self-hosting/upgrading.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/manual/server/self-hosting/customization.md b/docs/manual/server/self-hosting/customization.md index eb2cc36..a955fde 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:20240203 +- image: ghcr.io/asciinema/asciinema-server:20240324 + 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 a6ec6e2..860818e 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:20240203 + image: ghcr.io/asciinema/asciinema-server:20240324 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:20240203 + image: ghcr.io/asciinema/asciinema-server:20240324 ports: - '80:4000' environment: @@ -110,7 +110,7 @@ a template. Let's break it down. -The `asciinema` container uses a server image version tagged `20240203`. This is +The `asciinema` container uses a server image version tagged `20240324`. 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 a037782..321c40a 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:20231120 -+ image: ghcr.io/asciinema/asciinema-server:20240203 +- image: ghcr.io/asciinema/asciinema-server:20240203 ++ image: ghcr.io/asciinema/asciinema-server:20240324 # ... ```