Update README.md: fix Debian/Ubuntu installation instruction

As explained in issue https://github.com/bcicen/ctop/issues/179, jammy (Ubuntu 22.04.2 LTS) is unknown from the `azlux.fr` repo and it will prevent people to install `ctop` on `Ubuntu 22.04` and later. Also we can see in the script http://packages.azlux.fr/scripts/docker-ctop.txt that the only version is the `stabe` version. So we should use `stable` in the installation commands.
This commit is contained in:
Mohammad-Mohsen Aseman-Manzar 2023-04-05 20:22:39 +03:30 committed by GitHub
parent 59f00dd6aa
commit 357af14f5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ sudo apt-get install ca-certificates curl gnupg lsb-release
curl -fsSL https://azlux.fr/repo.gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/azlux-archive-keyring.gpg
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/azlux-archive-keyring.gpg] http://packages.azlux.fr/debian \
$(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/azlux.list >/dev/null
stable main" | sudo tee /etc/apt/sources.list.d/azlux.list >/dev/null
sudo apt-get update
sudo apt-get install docker-ctop
```