From 30153bb69f2e96b75c3c60588c6854b36b6fb25e Mon Sep 17 00:00:00 2001 From: Kelvin Date: Tue, 16 Jun 2015 15:12:43 +0100 Subject: [PATCH] Forward MySQL 3306 to port 33060 on host --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 0234dbcb..e2760c27 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,6 +10,8 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", path: "vagrant/install.sh" + config.vm.network "forwarded_port", guest: 3306, host: 33060 + config.vm.synced_folder "../pony.fm.files", "/vagrant-files" config.bindfs.bind_folder "/vagrant", "/vagrant" end