Skip to content

Commit

Permalink
Add Vagrantfile for more convenient testing in a linux environment. R…
Browse files Browse the repository at this point in the history
…efs #80
  • Loading branch information
rnorth committed Feb 24, 2016
1 parent d25410d commit 2908de9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Vagrantfile
@@ -0,0 +1,18 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure(2) do |config|

config.vm.box = "box-cutter/ubuntu1504-docker"

config.vm.network "private_network", ip: "192.168.33.10"

config.vm.provider "virtualbox" do |vb|
vb.memory = "2048"
end

config.vm.provision "shell", inline: <<-SHELL
sudo apt-get update
sudo apt-get install -y openjdk-8-jdk maven
SHELL
end

0 comments on commit 2908de9

Please sign in to comment.