X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/4d15bdaacc2a8e5b9711e9d1d6bcde50e7e0a91c..a50bf1c94495d84963c24648c1e9abffcf7adda6:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index 1356109e..f32640f1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,12 +8,16 @@ Vagrant.configure("2") do |config| # If true, then any SSH connections made will enable agent forwarding. config.ssh.forward_agent = true - #config.vm.synced_folder ".", "/home/vagrant/Nominatim" + config.vm.synced_folder ".", "/home/vagrant/Nominatim" config.vm.define "ubuntu" do |sub| sub.vm.box = "ubuntu/trusty64" sub.vm.provision :shell, :path => "vagrant/ubuntu-trusty-provision.sh" end + config.vm.define "ubuntu-php7" do |sub| + sub.vm.box = "ubuntu/trusty64" + sub.vm.provision :shell, :path => "vagrant/ubuntu-trusty-php7-provision.sh" + end config.vm.define "centos" do |sub| sub.vm.box = "bento/centos-7.2" sub.vm.provision :shell, :path => "vagrant/centos-7-provision.sh"