Skip to content

Instantly share code, notes, and snippets.

@Nav-Appaiya
Created March 26, 2015 23:35
Show Gist options
  • Save Nav-Appaiya/39c5370adfc30ea529ed to your computer and use it in GitHub Desktop.
Save Nav-Appaiya/39c5370adfc30ea529ed to your computer and use it in GitHub Desktop.
Vagrant multiple machines
Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: "echo Hello"
config.vm.define "web" do |web|
web.vm.box = "apache"
end
config.vm.define "db" do |db|
db.vm.box = "mysql"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment