Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3.  
  4. # All Vagrant configuration is done below. The "2" in Vagrant.configure
  5. # configures the configuration version (we support older styles for
  6. # backwards compatibility). Please don't change it unless you know what
  7. # you're doing.
  8. Vagrant.configure(2) do |config|
  9. # The most common configuration options are documented and commented below.
  10. # For a complete reference, please see the online documentation at
  11. # https://docs.vagrantup.com.
  12.  
  13. # Every Vagrant development environment requires a box. You can search for
  14. # boxes at https://atlas.hashicorp.com/search.
  15. config.vm.box = "ubuntu/trusty64"
  16. config.ssh.forward_agent = true
  17. config.vm.provision :shell, path: "bootstrap.sh"
  18.  
  19. # Create a forwarded port mapping which allows access to a specific port
  20. # within the machine from a port on the host machine. In the example below,
  21. # accessing "localhost:8080" will access port 80 on the guest machine.
  22. config.vm.network "forwarded_port", guest: 80, host: 8080
  23.  
  24. config.vm.synced_folder "../../VM Box Shared Folders/gearbox", "/home/gearbox", create: true
  25.  
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement