Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions desktop/install/debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ Recommended approach to install Docker Desktop on Debian:

1. Set up [Docker's package repository](../../engine/install/debian.md#set-up-the-repository).

2. Download latest DEB package from the [release](../release-notes.md) page.
2. Download latest [DEB package](https://desktop.docker.com/linux/main/amd64/docker-desktop-4.11.0-amd64.deb?utm_source=docker&utm_medium=webreferral&utm_campaign=docs-driven-download-linux-amd64).

3. Install the package with apt as follows:

```console
$ sudo apt-get update
$ sudo apt-get install ./docker-desktop-<version>-<arch>.deb
Expand Down Expand Up @@ -112,4 +112,4 @@ Remove the `credsStore` and `currentContext` properties from `$HOME/.docker/conf
## Next steps

- Take a look at the [Get started](../../get-started/index.md) training modules to learn how to build an image and run it as a containerized application.
- Review the topics in [Develop with Docker](../../develop/index.md) to learn how to build new applications using Docker.
- Review the topics in [Develop with Docker](../../develop/index.md) to learn how to build new applications using Docker.
4 changes: 2 additions & 2 deletions desktop/install/fedora.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ To install Docker Desktop on Fedora:

1. Set up [Docker's package repository](../../engine/install/fedora.md#set-up-the-repository).

2. Download latest RPM package from the [release](../release-notes.md) page.
2. Download latest [RPM package](https://desktop.docker.com/linux/main/amd64/docker-desktop-4.11.0-x86_64.rpm?utm_source=docker&utm_medium=webreferral&utm_campaign=docs-driven-download-linux-amd64).

3. Install the package with dnf as follows:

```console
$ sudo dnf install ./docker-desktop-<version>-<arch>.rpm
```
Expand Down
17 changes: 8 additions & 9 deletions desktop/install/linux-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,26 @@ redirect_from:

This page contains information about system requirements, download URLs, and instructions on how to install and update Docker Desktop for Linux.

> Download Docker Desktop for Linux packages
> Follow the links below to view the distro-specific installation instructions:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this looks better, thank you

>
> [DEB](https://desktop.docker.com/linux/main/amd64/docker-desktop-4.11.0-amd64.deb?utm_source=docker&utm_medium=webreferral&utm_campaign=docs-driven-download-linux-amd64){: .button .primary-btn }
> [RPM](https://desktop.docker.com/linux/main/amd64/docker-desktop-4.11.0-x86_64.rpm?utm_source=docker&utm_medium=webreferral&utm_campaign=docs-driven-download-linux-amd64){: .button .primary-btn }

*For checksums, see [Release notes](../release-notes.md)*
> * [Ubuntu](ubuntu.md)
> * [Debian](debian.md)
> * [Fedora](fedora.md)

## System requirements

To install Docker Desktop successfully, your Linux host must meet the following requirements:

- 64-bit kernel and CPU support for virtualization
- 64-bit kernel and CPU support for virtualization.

- KVM virtualization support. Follow the [KVM virtualization support instructions](#kvm-virtualization-support) to check if the KVM kernel modules are enabled and how to provide access to the kvm device.

- **QEMU must be version 5.2 or newer**. We recommend upgrading to the latest version.
- **QEMU must be version 5.2 or newer**. We recommend upgrading to the latest version.

- systemd init system.

- Gnome or KDE Desktop environment.
-For many Linux distros, the Gnome environment does not support tray icons. To add support for tray icons, you need to install a Gnome extension. For example, [AppIndicator](https://extensions.gnome.org/extension/615/appindicator-support/)).
- For many Linux distros, the Gnome environment does not support tray icons. To add support for tray icons, you need to install a Gnome extension. For example, [AppIndicator](https://extensions.gnome.org/extension/615/appindicator-support/)).

- At least 4 GB of RAM.

Expand Down Expand Up @@ -65,7 +64,7 @@ Docker supports Docker Desktop on the current LTS release of the aforementioned
### KVM virtualization support


Docker Desktop runs a VM that requires [KVM support](https://www.linux-kvm.org).
Docker Desktop runs a VM that requires [KVM support](https://www.linux-kvm.org).

The `kvm` module should load automatically if the host has virtualization support. To load the module manually, run:

Expand Down
6 changes: 3 additions & 3 deletions desktop/install/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ $ sudo apt install gnome-terminal

Recommended approach to install Docker Desktop on Ubuntu:

1. Set up [Docker's package repository](../../engine/install/ubuntu.md#set-up-the-repository).
1. Set up [Docker's package repository](../../engine/install/ubuntu.md#set-up-the-repository).

2. Download latest DEB package from the [release](../release-notes.md) page.
2. Download latest [DEB package](https://desktop.docker.com/linux/main/amd64/docker-desktop-4.11.0-amd64.deb?utm_source=docker&utm_medium=webreferral&utm_campaign=docs-driven-download-linux-amd64).

3. Install the package with apt as follows:

```console
$ sudo apt-get update
$ sudo apt-get install ./docker-desktop-<version>-<arch>.deb
Expand Down