Skip to content

Instantly share code, notes, and snippets.

@wujku
Created April 18, 2016 06:34
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 wujku/98003bb427297fc989d205f09d44d495 to your computer and use it in GitHub Desktop.
Save wujku/98003bb427297fc989d205f09d44d495 to your computer and use it in GitHub Desktop.
Simple vagrant configuration
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provider "virtualbox" do |vb|
vb.memory = "2048"
vb.cpus = 2
vb.name = "vm"
vb.linked_clone = true
end
config.vm.provision "shell" do |s|
s.path = "setup.sh"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment