Merge pull request #195 from errordeveloper/master
Clean-up provisioning output
This commit is contained in:
commit
caeb9cfee8
6
demo/vagrant/Vagrantfile
vendored
6
demo/vagrant/Vagrantfile
vendored
|
@ -6,13 +6,10 @@ $script = <<SCRIPT
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y unzip curl wget
|
sudo apt-get install -y unzip curl wget
|
||||||
|
|
||||||
# Install Docker
|
|
||||||
sudo curl -sSL https://get.docker.com/ | sh
|
|
||||||
|
|
||||||
# Download Nomad
|
# Download Nomad
|
||||||
echo Fetching Nomad...
|
echo Fetching Nomad...
|
||||||
cd /tmp/
|
cd /tmp/
|
||||||
wget https://dl.bintray.com/mitchellh/nomad/nomad_0.1.0_linux_amd64.zip -O nomad.zip
|
curl -sSL https://dl.bintray.com/mitchellh/nomad/nomad_0.1.0_linux_amd64.zip -o nomad.zip
|
||||||
|
|
||||||
echo Installing Nomad...
|
echo Installing Nomad...
|
||||||
unzip nomad.zip
|
unzip nomad.zip
|
||||||
|
@ -28,6 +25,7 @@ Vagrant.configure(2) do |config|
|
||||||
config.vm.box = "puphpet/ubuntu1404-x64"
|
config.vm.box = "puphpet/ubuntu1404-x64"
|
||||||
config.vm.hostname = "nomad"
|
config.vm.hostname = "nomad"
|
||||||
config.vm.provision "shell", inline: $script, privileged: false
|
config.vm.provision "shell", inline: $script, privileged: false
|
||||||
|
config.vm.provision "docker" # Just install it
|
||||||
|
|
||||||
# Increase memory for Parallels Desktop
|
# Increase memory for Parallels Desktop
|
||||||
config.vm.provider "parallels" do |p, o|
|
config.vm.provider "parallels" do |p, o|
|
||||||
|
|
Loading…
Reference in a new issue