Skip to content

Instantly share code, notes, and snippets.

@danlamanna
Created March 8, 2015 20:03
Show Gist options
  • Save danlamanna/f195371b0cd3dd091ed0 to your computer and use it in GitHub Desktop.
Save danlamanna/f195371b0cd3dd091ed0 to your computer and use it in GitHub Desktop.
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# prod box
config.vm.define "prod" do |prod|
prod.vm.box = "hashicorp/precise32"
prod.vm.network "private_network", ip: "192.168.33.10"
end
# dev box
config.vm.define "dev" do |dev|
dev.vm.box = "hashicorp/precise32"
dev.vm.network "private_network", ip: "192.168.33.11"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment