From 7f62d13fce7221bb097335c71a2fb274613dbcc8 Mon Sep 17 00:00:00 2001 From: Rupak Ganguly Date: Tue, 19 Nov 2019 15:07:02 -0500 Subject: [PATCH] Add the missing instruction to add the repo This change is only affecting the RHEL 7/8 portion of the doc. --- _includes/ee-linux-install-reuse.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/_includes/ee-linux-install-reuse.md b/_includes/ee-linux-install-reuse.md index ea9226a314..695657c700 100644 --- a/_includes/ee-linux-install-reuse.md +++ b/_includes/ee-linux-install-reuse.md @@ -118,6 +118,15 @@ You only need to set up the repository once, after which you can install Docker ```bash $ sudo yum-config-manager --enable rhui-rhel-7-server-rhui-extras-rpms ``` + +6. Add the Docker Engine - Enterprise **stable** repository: + + ```bash + $ sudo -E yum-config-manager \ + --add-repo \ + "$DOCKERURL/{{ linux-dist-url-slug }}/docker-ee.repo" + ``` +
1. Remove existing Docker repositories from `/etc/yum.repos.d/`: @@ -152,6 +161,15 @@ You only need to set up the repository once, after which you can install Docker device-mapper-persistent-data \ lvm2 ``` + +5. Add the Docker Engine - Enterprise **stable** repository: + + ```bash + $ sudo -E yum-config-manager \ + --add-repo \ + "$DOCKERURL/{{ linux-dist-url-slug }}/docker-ee.repo" + ``` +
{% endif %}