Skip to content

Instantly share code, notes, and snippets.

@gogiel
Created August 25, 2018 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gogiel/c0cd05a7f8d8a2e751d74860d7b2c140 to your computer and use it in GitHub Desktop.
Save gogiel/c0cd05a7f8d8a2e751d74860d7b2c140 to your computer and use it in GitHub Desktop.
Docker-CE in Vagrant
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.provision "shell", inline: <<-SHELL
sudo apt-get update
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get -y install docker-ce
sudo usermod -aG docker vagrant
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment