From 10527d0dc92e1eb628741aa53cc81cd91e287d49 Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Fri, 8 Mar 2019 10:33:12 +0000 Subject: [PATCH] Forward vagrant ports 3001:3001 and 5432:6543 for razzle and Postgres --- Vagrantfile | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 7052fb4e..181e3aec 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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