]> git.openstreetmap.org Git - nominatim.git/blobdiff - Vagrantfile
add vagrant and installation instructions for ubuntu 18
[nominatim.git] / Vagrantfile
index 5c9563bd0ef0ced397584b24eb94bd6efa9ded25..bd610e7e756fda910b69da6838cc6a398907c80f 100644 (file)
@@ -15,6 +15,15 @@ Vagrant.configure("2") do |config|
   end
 
   config.vm.define "ubuntu", primary: true do |sub|
+      sub.vm.box = "bento/ubuntu-18.04"
+      sub.vm.provision :shell do |s|
+        s.path = "vagrant/Install-on-Ubuntu-18.sh"
+        s.privileged = false
+        s.args = [checkout]
+      end
+  end
+
+  config.vm.define "ubuntu16" do |sub|
       sub.vm.box = "bento/ubuntu-16.04"
       sub.vm.provision :shell do |s|
         s.path = "vagrant/Install-on-Ubuntu-16.sh"