Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Commit

Permalink
Use latest version of docker in vagrant
Browse files Browse the repository at this point in the history
  • Loading branch information
barnardb committed Jun 18, 2018
1 parent d13bdc1 commit 9ce4d3a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Vagrantfile
Expand Up @@ -14,10 +14,15 @@ Vagrant.configure("2") do |config|

config.vm.provision "dependencies", type: "shell", inline: <<-SHELL
apt-get update
apt-get install -y openjdk-8-jdk-headless unzip docker.io
apt-get install -y openjdk-8-jdk-headless unzip
ln -s "$(which python3)" /usr/local/python
SHELL

config.vm.provision "docker", type: "shell", inline: <<-SHELL
curl -fsSL get.docker.com -o get-docker.sh
sudo sh get-docker.sh
SHELL

config.vm.provision "nomad", type: "shell", inline: <<-SHELL
nomad_version=0.7.0
wget --no-verbose "https://releases.hashicorp.com/nomad/${nomad_version}/nomad_${nomad_version}_linux_amd64.zip"
Expand Down

0 comments on commit 9ce4d3a

Please sign in to comment.