X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/f45b3fa3f243de8894c03d8c9377157d01092c8c..2bc46b8f213defcb6b8c9624a5c4c1f3571ccdcc:/Vagrantfile?ds=sidebyside diff --git a/Vagrantfile b/Vagrantfile index bd610e7e..4740f879 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -23,6 +23,15 @@ Vagrant.configure("2") do |config| end end + config.vm.define "ubuntu18nginx" do |sub| + sub.vm.box = "bento/ubuntu-18.04" + sub.vm.provision :shell do |s| + s.path = "vagrant/Install-on-Ubuntu-18-nginx.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|