Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion content/manuals/desktop/setup/install/linux/rhel.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,19 @@
To install Docker Desktop successfully, you must:

- Meet the [general system requirements](_index.md#general-system-requirements).
- Have a 64-bit version of either RHEL 8 or RHEL 9.
- Have a 64-bit version of either RHEL 8, RHEL 9, or RHEL 10.

- If `pass` is not installed, or it can't be installed, you must enable [CodeReady Linux Builder (CRB) repository](https://access.redhat.com/articles/4348511) and [Extra Packages for Enterprise Linux (EPEL)](https://docs.fedoraproject.org/en-US/epel/).

{{< tabs group="os_version" >}}
{{< tab name="RHEL 10" >}}
```console
$ sudo subscription-manager repos --enable codeready-builder-for-rhel-10-$(arch)-rpms
$ sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm

Check failure on line 34 in content/manuals/desktop/setup/install/linux/rhel.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'dnf'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'dnf'?", "location": {"path": "content/manuals/desktop/setup/install/linux/rhel.md", "range": {"start": {"line": 34, "column": 11}}}, "severity": "ERROR"}
$ sudo dnf install pass

Check failure on line 35 in content/manuals/desktop/setup/install/linux/rhel.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'dnf'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'dnf'?", "location": {"path": "content/manuals/desktop/setup/install/linux/rhel.md", "range": {"start": {"line": 35, "column": 11}}}, "severity": "ERROR"}
```

{{< /tab >}}
{{< tab name="RHEL 9" >}}
```console
$ sudo subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms
Expand All @@ -49,6 +57,14 @@
- For a GNOME desktop environment you must install AppIndicator and KStatusNotifierItem [GNOME extensions](https://extensions.gnome.org/extension/615/appindicator-support/). You must also enable EPEL.

{{< tabs group="os_version" >}}
{{< tab name="RHEL 10" >}}
```console
$ # enable EPEL as described above

Check warning on line 62 in content/manuals/desktop/setup/install/linux/rhel.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'previous' instead of 'above' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'previous' instead of 'above'", "location": {"path": "content/manuals/desktop/setup/install/linux/rhel.md", "range": {"start": {"line": 62, "column": 33}}}, "severity": "INFO"}
$ sudo dnf install gnome-shell-extension-appindicator

Check failure on line 63 in content/manuals/desktop/setup/install/linux/rhel.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'dnf'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'dnf'?", "location": {"path": "content/manuals/desktop/setup/install/linux/rhel.md", "range": {"start": {"line": 63, "column": 11}}}, "severity": "ERROR"}
$ sudo gnome-extensions enable appindicatorsupport@rgcjonas.gmail.com
```

{{< /tab >}}
{{< tab name="RHEL 9" >}}
```console
$ # enable EPEL as described above
Expand Down
Loading