From b881b419f8970e62c2b16f6c02c9a9e4a17aaea3 Mon Sep 17 00:00:00 2001 From: Guillem Hernandez Sola Date: Mon, 19 Oct 2020 21:43:50 +0200 Subject: [PATCH] Sync folder to work --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index b71bbf8..1d4a64c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,6 +3,7 @@ Vagrant.configure(2) do |config| docker.vm.box = "bento/ubuntu-18.04" docker.vm.network "private_network", ip: "192.168.11.22" docker.vm.hostname = "docker" + docker.vm.synced_folder ".", "/home/vagrant/sync", type: "rsync" docker.vm.provision :shell, :path => "docker.sh" docker.vm.network "forwarded_port", guest: 80, host: 80 docker.vm.network "forwarded_port", guest: 443, host: 443