Advertisement
RiseAgainst0

Untitled

Dec 14th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. Vagrant.configure("2") do |config|
  2.  
  3. config.vm.provider :virtualbox do |v|
  4. v.name = "magento"
  5. v.customize [
  6. "modifyvm", :id,
  7. "--name", "goodwheel",
  8. "--memory", 6144,
  9. "--natdnshostresolver1", "on",
  10. "--cpus", 2,
  11. ]
  12. end
  13.  
  14. config.vm.box = "ubuntu/trusty64"
  15. config.vm.network :private_network, ip: "192.168.33.89"
  16. config.ssh.forward_agent = true
  17.  
  18. config.vm.provision "ansible" do |ansible|
  19. ansible.playbook = "ansible/playbook.yml"
  20. end
  21.  
  22. config.vm.synced_folder "/var/www/html/goodwheel", "/var/www/html/goodwheel",
  23. owner: "vagrant",
  24. group: "vagrant"
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement