engine/install: debian: update example output versions

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2024-04-25 13:04:27 +02:00
parent 7f6a0777fe
commit 8ebbf45e66
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 3 additions and 3 deletions

View File

@ -143,15 +143,15 @@ Docker from the repository.
# List the available versions:
$ apt-cache madison docker-ce | awk '{ print $3 }'
5:25.0.0-1~debian.12~bookworm
5:24.0.7-1~debian.12~bookworm
5:26.1.0-1~debian.12~bookworm
5:26.0.2-1~debian.12~bookworm
...
```
Select the desired version and install:
```console
$ VERSION_STRING=5:25.0.0-1~debian.12~bookworm
$ VERSION_STRING=5:26.1.0-1~debian.12~bookworm
$ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin
```