X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/8d4a86635fe661717a17fe3bb7ff2cde8a784158..f00baba40c6f73ba8e637ac4cea60d59a11692f4:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index 5c9563bd..4740f879 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -15,6 +15,24 @@ 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 "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| s.path = "vagrant/Install-on-Ubuntu-16.sh"