diff --git a/install/linux/docker-ee/suse.md b/install/linux/docker-ee/suse.md index 8738144c14..b79ce16475 100644 --- a/install/linux/docker-ee/suse.md +++ b/install/linux/docker-ee/suse.md @@ -164,6 +164,12 @@ Before you install Docker EE for the first time on a new host machine, you need to set up the Docker repository. Afterward, you can install and update Docker EE from the repository. +There are currently two versions of Docker EE Engine available: + +* 18.03 - Use this version if you're only running Docker EE Engine. +* 17.06 - Use this version if you're using Docker Enterprise Edition 2.0 (Docker +Engine, UCP, and DTR). + #### Set up the repository 1. Temporarily add a `$DOCKER_EE_URL` variable into your environment. This @@ -171,50 +177,28 @@ from the repository. with the URL you noted down in the [prerequisites](#prerequisites). ```bash - $ DOCKER_EE_URL="" + $ DOCKER_EE_URL="/sles/12.3//stable-" + ``` + + Where: + * `DOCKER-EE-URL` is the URL from your Docker Store subscription. + * `ARCHITECTURE` is `x86_64`, `s390x`, or `ppc64le`. + * `VERSION` is `18.03` or `17.06`. + + As an example your command should look like: + + ```bash + DOCKER_EE_URL="https://storebits.docker.com/ee/sles/sub-555-55-555/sles/12.3/x86_64/stable-17.06" ``` 2. Use the following command to set up the **stable** repository. Use the command as-is. It works because of the variable you set in the previous step. - -
-
- ```bash - $ sudo zypper addrepo \ - "${DOCKER_EE_URL}/sles/12.3/x86_64/stable-{{ site.docker_ee_version }}" \ - docker-ee-stable + $ sudo zypper addrepo $DOCKER_EE_URL docker-ee-stable ``` -
-
- - ```bash - $ sudo zypper addrepo \ - "${DOCKER_EE_URL}/sles/12.3/s390x/stable-{{ site.docker_ee_version }}" \ - docker-ee-stable - ``` - -
- -
- - ```bash - $ sudo zypper addrepo \ - "${DOCKER_EE_URL}/sles/12.3/ppc64le/stable-{{ site.docker_ee_version }}" \ - docker-ee-stable - ``` - -
-
- - 3. Import the GPG key from the repository. Use the command as-is. It works because of the variable you set earlier.