also add docker-ee-cli to docker-ee install instructions

Signed-off-by: Andrew Hsu <andrewhsu@docker.com>
This commit is contained in:
Andrew Hsu 2019-01-30 01:53:01 +00:00
parent 96c56dabca
commit 128b54cef8
3 changed files with 7 additions and 7 deletions

View File

@ -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 <FULLY-QUALIFIED-PACKAGE-NAME> containerd.io
$ sudo yum -y install docker-ee-<VERSION_STRING> docker-ee-cli-<VERSION_STRING> containerd.io
```
For example, if you want to install the 18.09 version run the following:

View File

@ -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-<VERSION_STRING> containerd.io
$ sudo zypper install docker-ee-<VERSION_STRING> docker-ee-cli-<VERSION_STRING> containerd.io
```
Docker is installed but not started. The `docker` group is created, but no

View File

@ -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=<VERSION> containerd.io
$ sudo apt-get install docker-ee=<VERSION_STRING> docker-ee-cli=<VERSION_STRING> containerd.io
```
The Docker daemon starts automatically.