-
Notifications
You must be signed in to change notification settings - Fork 0
Vagrant
Lucian Cumpata edited this page Jul 22, 2019
·
2 revisions
-
How to forward a port in Vagrant file? R:
config.vm.network :forwarded_port, guest:80, host:9090 -
How to do provisioning from a separate file? R: For example create a folder in vagrant directory in host named .provision and a file named bootstrap.sh and add this in the Vagrant file
config.vm.provision :shell, :path => ".provision/bootstrap.sh"