Skip to content

Commit

Permalink
Update example version tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ku1ik committed Mar 27, 2024
1 parent f467b03 commit ec0f836
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/manual/server/self-hosting/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
6 changes: 3 additions & 3 deletions docs/manual/server/self-hosting/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/server/self-hosting/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
# ...
```

Expand Down

0 comments on commit ec0f836

Please sign in to comment.