security-cw/Vagrantfile

6 lines
176 B
Ruby
Raw Permalink Normal View History

2020-11-23 21:41:51 +00:00
Vagrant.configure("2") do |config|
2020-11-25 14:31:57 +00:00
config.vm.box = "generic/ubuntu1804"
2020-11-25 14:30:43 +00:00
config.vm.provision "shell", path: "init.sh"
config.vm.synced_folder "./", "/home/vagrant/cw"
2020-11-23 21:41:51 +00:00
end