Hello, I design websites and would like to start using multi-machine setup. Is it possible to use one VM for each config in a multi-machine setup? I don't need all VMs on at the same time, just one at a time. Each config file loads the sync folder.
This is my Vagrantfile so far: Vagrant.configure("2") do |config| > config.vm.box = "ubuntu/trusty64" > config.vm.network :forwarded_port, host: 8080, guest: 80 > config.vm.network "private_network", ip: "172.28.128.3" > > config.vm.define "myoffercode" do |vm1| > vm1.vm.synced_folder "/Users/gregoryschultz/Sites/myoffercode", > "/var/www/html" > end > > config.vm.define "dailybayou" do |vm2| > vm2.vm.synced_folder "/Users/gregoryschultz/Sites/dailybayou", > "/var/www/html" > end > end > > -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/1e56affb-53ae-44b0-910c-2b37d8b2f066%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.