Update rhel.md to fix package names (rpms instead of debs)

Update rhel.md to fix package names (rpms instead of debs)
This commit is contained in:
Phillip Ross 2024-07-12 20:37:10 -04:00 committed by GitHub
parent 09d0b9ae61
commit cddc06db18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 11 deletions

View File

@ -191,24 +191,24 @@ download a new file each time you want to upgrade Docker Engine.
3. Select the applicable architecture (`x86_64`, `aarch64`, or `s390x`), and 3. Select the applicable architecture (`x86_64`, `aarch64`, or `s390x`), and
then go to `stable/Packages/`. then go to `stable/Packages/`.
4. Download the following `deb` files for the Docker Engine, CLI, containerd, 4. Download the following `rpm` files for the Docker Engine, CLI, containerd,
and Docker Compose packages: and Docker Compose packages:
- `containerd.io_<version>_<arch>.deb` - `containerd.io-<version>.<arch>.rpm`
- `docker-ce_<version>_<arch>.deb` - `docker-ce-<version>.<arch>.rpm`
- `docker-ce-cli_<version>_<arch>.deb` - `docker-ce-cli-<version>.<arch>.rpm`
- `docker-buildx-plugin_<version>_<arch>.deb` - `docker-buildx-plugin-<version>.<arch>.rpm`
- `docker-compose-plugin_<version>_<arch>.deb` - `docker-compose-plugin-<version>.<arch>.rpm`
5. Install Docker Engine, changing the following path to the path where you downloaded 5. Install Docker Engine, changing the following path to the path where you downloaded
the packages. the packages.
```console ```console
$ sudo yum install ./containerd.io_<version>_<arch>.rpm \ $ sudo yum install ./containerd.io-<version>.<arch>.rpm \
./docker-ce_<version>_<arch>.rpm \ ./docker-ce-<version>.<arch>.rpm \
./docker-ce-cli_<version>_<arch>.rpm \ ./docker-ce-cli-<version>.<arch>.rpm \
./docker-buildx-plugin_<version>_<arch>.rpm \ ./docker-buildx-plugin-<version>.<arch>.rpm \
./docker-compose-plugin_<version>_<arch>.rpm ./docker-compose-plugin-<version>.<arch>.rpm
``` ```
Docker is installed but not started. The `docker` group is created, but no Docker is installed but not started. The `docker` group is created, but no