From 8750f1e1955f590971dccde96d9f276f0b65eb3e Mon Sep 17 00:00:00 2001 From: David Birks Date: Mon, 7 Jan 2019 11:03:15 -0500 Subject: [PATCH] Fix add-apt-repository command Adds the word `stable` to the `add-apt-repository` command to fix the `Malformed entry` error. --- install/linux/docker-ee/ubuntu.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/linux/docker-ee/ubuntu.md b/install/linux/docker-ee/ubuntu.md index 825b7468db..e37300f8bd 100644 --- a/install/linux/docker-ee/ubuntu.md +++ b/install/linux/docker-ee/ubuntu.md @@ -185,7 +185,7 @@ from the repository. $ sudo add-apt-repository \ "deb [arch=amd64] $DOCKER_EE_URL/ubuntu \ $(lsb_release -cs) \ - $DOCKER_EE_VERSION" + $DOCKER_EE_VERSION stable" ``` @@ -196,7 +196,7 @@ from the repository. $ sudo add-apt-repository \ "deb [arch=s390x] $DOCKER_EE_URL/ubuntu \ $(lsb_release -cs) \ - $DOCKER_EE_VERSION" + $DOCKER_EE_VERSION stable" ``` @@ -207,7 +207,7 @@ from the repository. $ sudo add-apt-repository \ "deb [arch=ppc64el] $DOCKER_EE_URL/ubuntu \ $(lsb_release -cs) \ - $DOCKER_EE_VERSION" + $DOCKER_EE_VERSION stable" ```