From 1e26fa07758c553c719ce0d39159597076f0d72f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartomeu=20Mir=C3=B3?= Date: Fri, 20 Jan 2017 16:14:58 +0100 Subject: [PATCH] FIX repo URL at add-apt-repository With the past version the apt-get update results in a 403 for the docker repository when using a Jessie. Looking at the repo structure I assume that now will also work on the other Debian releases. --- engine/installation/linux/debian.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/installation/linux/debian.md b/engine/installation/linux/debian.md index 1ac661178e..8b840c2d27 100644 --- a/engine/installation/linux/debian.md +++ b/engine/installation/linux/debian.md @@ -116,8 +116,8 @@ Docker from the repository. ```bash $ sudo add-apt-repository \ - "deb https://apt.dockerproject.org/repo/pool/ \ - $(lsb_release -cs) \ + "deb https://apt.dockerproject.org/repo/ \ + debian-$(lsb_release -cs) \ main" ```