From 05ca25b53f291ce2c6004ae6c9e259317c106dbe Mon Sep 17 00:00:00 2001 From: Steven Hartland Date: Fri, 20 Jan 2017 13:34:48 +0000 Subject: [PATCH 1/2] Correct repository details for ubuntu install Correct the ubuntu apt repository to use the correct form ubuntu- --- engine/installation/linux/ubuntu.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/installation/linux/ubuntu.md b/engine/installation/linux/ubuntu.md index d26a8a13cb..afe4afba9a 100644 --- a/engine/installation/linux/ubuntu.md +++ b/engine/installation/linux/ubuntu.md @@ -94,7 +94,7 @@ Docker from the repository. ```bash $ sudo add-apt-repository \ "deb https://apt.dockerproject.org/repo/pool/ \ - $(lsb_release -cs) \ + ubuntu-$(lsb_release -cs) \ main" ``` From 4f60e41d46ff516ed9de3a6a98fb2812a55ac6f8 Mon Sep 17 00:00:00 2001 From: Misty Stanley-Jones Date: Fri, 20 Jan 2017 09:11:53 -0800 Subject: [PATCH 2/2] Correct Ubuntu repo URL --- engine/installation/linux/ubuntu.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/installation/linux/ubuntu.md b/engine/installation/linux/ubuntu.md index afe4afba9a..04bdc568cf 100644 --- a/engine/installation/linux/ubuntu.md +++ b/engine/installation/linux/ubuntu.md @@ -93,7 +93,7 @@ Docker from the repository. ```bash $ sudo add-apt-repository \ - "deb https://apt.dockerproject.org/repo/pool/ \ + "deb https://apt.dockerproject.org/repo/ \ ubuntu-$(lsb_release -cs) \ main" ```