Forward vagrant ports 3001:3001 and 5432:6543 for razzle and Postgres

This commit is contained in:
Tom Russell 2019-03-08 10:33:12 +00:00
parent cbb9840087
commit 10527d0dc9

16
Vagrantfile vendored
View File

@ -17,12 +17,17 @@ Vagrant.configure("2") do |config|
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine and only allow access
# via 127.0.0.1 to disable public access
# dev node process
config.vm.network "forwarded_port", guest: 3000, host: 3000, host_ip: "127.0.0.1"
# dev (node helper process)
config.vm.network "forwarded_port", guest: 3001, host: 3001, host_ip: "127.0.0.1"
# Postgres
config.vm.network "forwarded_port", guest: 5432, host: 6543, host_ip: "127.0.0.1"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# Using VirtualBox:
config.vm.provider :virtualbox do |vm|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
@ -30,11 +35,12 @@ Vagrant.configure("2") do |config|
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# Enable creating symlinks in shared folder
# On a Windows host, vagrant will need to run with permissions to 'Create Symlinks', either
# set for the current user in the Local Security Policy, or run from a shell with
# Administrative rights.
vm.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"]
end
#
# View the documentation for the provider you are using for more
# information on available options.
# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the