Skip to content

Instantly share code, notes, and snippets.

@ericorruption
Created September 5, 2016 18:07
Show Gist options
  • Select an option

  • Save ericorruption/edfbc1ab536c17143d75fe4e008bc3c4 to your computer and use it in GitHub Desktop.

Select an option

Save ericorruption/edfbc1ab536c17143d75fe4e008bc3c4 to your computer and use it in GitHub Desktop.
minimal vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.network "private_network", ip: "192.168.33.10"
# config.vm.provider "virtualbox" do |vb|
# vb.memory = "1024"
# end
config.vm.provision "shell", path: "bootstrap.sh"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment