diff --git a/_includes/ee-linux-install-reuse.md b/_includes/ee-linux-install-reuse.md index 12f9b20642..bbd1cfa6b5 100644 --- a/_includes/ee-linux-install-reuse.md +++ b/_includes/ee-linux-install-reuse.md @@ -145,7 +145,7 @@ You only need to set up the repository once, after which you can install Docker 1. Install the latest patch release, or go to the next step to install a specific version: ```bash - $ sudo yum -y install docker-ee containerd.io + $ sudo yum -y install docker-ee docker-ee-cli containerd.io ``` If prompted to accept the GPG key, verify that the fingerprint matches `{{ gpg-fingerprint }}`, and if so, accept it. @@ -163,10 +163,10 @@ You only need to set up the repository once, after which you can install Docker The list returned depends on which repositories you enabled, and is specific to your version of {{ linux-dist-long }} (indicated by `.el7` in this example). - b. Install a specific version by its **fully qualified package name** which is the package name (`docker-ee`) plus the version string (2nd column) up to the hyphen, for example: `docker-ee-18.09.0` + b. Install a specific version by its fully qualified package name, which is the package name (`docker-ee`) plus the version string (2nd column) starting at the first colon (`:`), up to the first hyphen, separated by a hyphen (`-`). For example, `docker-ee-18.09.1`. ```bash - $ sudo yum -y install containerd.io + $ sudo yum -y install docker-ee- docker-ee-cli- containerd.io ``` For example, if you want to install the 18.09 version run the following: diff --git a/install/linux/docker-ee/suse.md b/install/linux/docker-ee/suse.md index 71e2ee46ba..dc3ecafe5f 100644 --- a/install/linux/docker-ee/suse.md +++ b/install/linux/docker-ee/suse.md @@ -226,7 +226,7 @@ from the repository. specific version. ```bash - $ sudo zypper install docker-ee containerd.io + $ sudo zypper install docker-ee docker-ee-cli containerd.io ``` Start Docker: @@ -259,7 +259,7 @@ from the repository. and separate them by a hyphen (`-`): ```bash - $ sudo zypper install docker-ee- containerd.io + $ sudo zypper install docker-ee- docker-ee-cli- containerd.io ``` Docker is installed but not started. The `docker` group is created, but no diff --git a/install/linux/docker-ee/ubuntu.md b/install/linux/docker-ee/ubuntu.md index a99a67e062..e46af2efd9 100644 --- a/install/linux/docker-ee/ubuntu.md +++ b/install/linux/docker-ee/ubuntu.md @@ -194,7 +194,7 @@ from the repository. Use this command to install the latest version of Docker EE and containerd: ```bash - $ sudo apt-get install docker-ee containerd.io + $ sudo apt-get install docker-ee docker-ee-cli containerd.io ``` > **Warning**: If you have multiple Docker repositories enabled, installing @@ -222,7 +222,7 @@ from the repository. version string to the package name and separate them by an equals sign (`=`): ```bash - $ sudo apt-get install docker-ee= containerd.io + $ sudo apt-get install docker-ee= docker-ee-cli= containerd.io ``` The Docker daemon starts automatically.