Changed docker apt repo URI from https to http because the http driver for apt is not installed by default
Upstream-commit: 52fe45249798991a35f5a5b5a4e1af26ea42221c Component: engine
This commit is contained in:
committed by
Daniel Mizyrycki
parent
a1b708cb5b
commit
65eaa57cc6
2
components/engine/Vagrantfile
vendored
2
components/engine/Vagrantfile
vendored
@ -18,7 +18,7 @@ Vagrant::Config.run do |config|
|
||||
if Dir.glob("#{File.dirname(__FILE__)}/.vagrant/machines/default/*/id").empty?
|
||||
# Add lxc-docker package
|
||||
pkg_cmd = "wget -q -O - http://get.docker.io/gpg | apt-key add -;" \
|
||||
"echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list;" \
|
||||
"echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list;" \
|
||||
"apt-get update -qq; apt-get install -q -y --force-yes lxc-docker; "
|
||||
# Add Ubuntu raring backported kernel
|
||||
pkg_cmd << "apt-get update -qq; apt-get install -q -y linux-image-generic-lts-raring; "
|
||||
|
||||
Reference in New Issue
Block a user