security-cw/Vagrantfile
Liam Dalgarno 49e18c82a9 Sync directory and add python3
Co-authored-by: Chris Gora <34940205+ChrisGora@users.noreply.github.com>
Co-authored-by: jack bond-preston <jackbondpreston@outlook.com>
2020-11-25 14:52:07 +00:00

6 lines
176 B
Ruby

Vagrant.configure("2") do |config|
config.vm.box = "generic/ubuntu1804"
config.vm.provision "shell", path: "init.sh"
config.vm.synced_folder "./", "/home/vagrant/cw"
end