From b3ea302bb2525d12eff02148e7da380a7fb8066b Mon Sep 17 00:00:00 2001 From: Alex Seymour Date: Fri, 27 Jul 2018 09:59:25 +0200 Subject: [PATCH] Fix SLES gpg url The gpg key is in the top level directory for each distribution, using "${DOCKER_EE_URL}/sles/gpg" will attempt to load the gpg key from within the 12.3/// subdirectory, because of how DOCKER_EE_URL is set before. --- install/linux/docker-ee/suse.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/linux/docker-ee/suse.md b/install/linux/docker-ee/suse.md index b79ce16475..ecc08544e9 100644 --- a/install/linux/docker-ee/suse.md +++ b/install/linux/docker-ee/suse.md @@ -199,11 +199,11 @@ Engine, UCP, and DTR). $ sudo zypper addrepo $DOCKER_EE_URL 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. +3. Import the GPG key from the repository. Replace `` + with the URL you noted down in the [prerequisites](#prerequisites). ```bash - $ sudo rpm --import "${DOCKER_EE_URL}/sles/gpg" + $ sudo rpm --import "/sles/gpg" ``` #### Install Docker EE