Update docker_install.rb

Docker provisioning fails on Debian Jessie without the apt-transport-https package installed.
This commit is contained in:
KaffeJunky123 2015-12-23 16:45:20 +01:00
parent 6aa89584b8
commit 1cdd664918
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ module VagrantPlugins
def self.docker_install(machine)
machine.communicate.tap do |comm|
comm.sudo("apt-get update -qq -y")
comm.sudo("apt-get install -qq -y --force-yes curl")
comm.sudo("apt-get install -qq -y --force-yes curl apt-transport-https")
comm.sudo("apt-get purge -qq -y lxc-docker* || true")
comm.sudo("curl -sSL https://get.docker.com/ | sh")
end