Private network, add sync, and fix curl download

This commit is contained in:
2020-09-29 15:38:50 -04:00
parent f8238c4690
commit a007f7d4db
2 changed files with 9 additions and 2 deletions

2
Vagrantfile vendored
View File

@@ -1,4 +1,6 @@
Vagrant.configure("2") do |config|
config.vm.box = "debian/buster64"
config.vm.synced_folder ".", "/vagrant"
config.vm.network "private_network", type: "dhcp"
config.vm.provision "shell", path: "install-docker.sh"
end