Vagrant: Also provision IntelliJ and Eclipse

This commit is contained in:
Nanne Baars
2016-10-10 11:29:37 +02:00
parent 9d93220c39
commit dddcc9675d
3 changed files with 13 additions and 5 deletions

View File

@ -1,13 +1,13 @@
#For now use the same as for developers but start WebGoat
#In the future we can add Docker as well and then Vagrant can start the
#Docker container
#Docker container or Chef which setups the Tomcat
Vagrant.configure(2) do |config|
config.vm.box = "boxcutter/ubuntu1604-desktop"
config.vm.network :forwarded_port, guest: 8080, host: 9999
config.vm.provider "virtualbox" do |vb|
vb.gui = false
vb.memory = "4096"
vb.memory = "2048"
vb.cpus = 2
vb.name = "WebGoat-Users"
vb.customize ["modifyvm", :id, "--nictype1", "virtio"]