From ad23745456f9bb9c1c3da3796a2ab769f192bf36 Mon Sep 17 00:00:00 2001 From: Danny Yates Date: Mon, 25 Nov 2013 17:12:18 +0000 Subject: [PATCH] Clone LVM using https: instead of git: The ports for the git protocol are not open in all corporate environments --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5bc36f84c2..adba9f215a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,7 +57,7 @@ run apt-get install -y -q lxc run apt-get install -y -q aufs-tools # Get lvm2 source for compiling statically -run git clone git://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2 && cd /usr/local/lvm2 && git checkout v2_02_103 +run git clone https://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2 && cd /usr/local/lvm2 && git checkout v2_02_103 # see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags # note: we can't use "git clone -b" above because it requires at least git 1.7.10 to be able to use that on a tag instead of a branch and we only have 1.7.9.5