Skip to content
Closed
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
16 changes: 14 additions & 2 deletions content/manuals/compose/install/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,13 @@ To install the Docker Compose plugin on Linux, you can either:
$ sudo apt-get update
$ sudo apt-get install docker-compose-plugin
```
* For RPM-based distributions, run:
* For Fedora, run:
```console
$ sudo dnf update
$ sudo dnf install docker-compose
```

* For RHEL and other RPM-based distributions, run:

```console
$ sudo yum update
Expand All @@ -64,7 +70,13 @@ To update the Docker Compose plugin, run the following commands:
$ sudo apt-get update
$ sudo apt-get install docker-compose-plugin
```
* For RPM-based distributions, run:
* For Fedora, run:

```console
$ sudo dnf update
$ sudo dnf upgrade docker-compose
```
* For RHEL and other RPM-based distributions, run:

```console
$ sudo yum update
Expand Down