From a2db12e2396574936f06f8b9227cd7de9065536b Mon Sep 17 00:00:00 2001 From: Ruslan Baidan Date: Wed, 8 Jul 2020 12:06:49 +0200 Subject: [PATCH] Added exposing of the postgresql port to access it from host machine. --- vagrant/Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile index b2d166b..9577738 100644 --- a/vagrant/Vagrantfile +++ b/vagrant/Vagrantfile @@ -25,6 +25,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.network :forwarded_port, guest: 80, host: 5001 config.vm.network :forwarded_port, guest: 5005, host: 5005 config.vm.network :forwarded_port, guest: 3306, host: 3306 + config.vm.network :forwarded_port, guest: 5432, host: 5435 # Create a private network, which allows host-only access to the machine # using a specific IP.