]> git.openstreetmap.org Git - nominatim.git/blob - Vagrantfile
split instruction into software installation and import
[nominatim.git] / Vagrantfile
1 # -*- mode: ruby -*-
2 # vi: set ft=ruby :
3
4 Vagrant.configure("2") do |config|
5   # Apache webserver
6   config.vm.network "forwarded_port", guest: 80, host: 8089
7
8   # If true, then any SSH connections made will enable agent forwarding.
9   config.ssh.forward_agent = true
10
11   if ENV['CHECKOUT'] != 'y' then
12       config.vm.synced_folder ".", "/home/vagrant/Nominatim"
13   end
14
15   config.vm.define "ubuntu" do |sub|
16       sub.vm.box = "ubuntu/trusty64"
17       sub.vm.provision :shell, :path => "vagrant/ubuntu-trusty-provision.sh"
18   end
19   config.vm.define "ubuntu-php7" do |sub|
20       sub.vm.box = "ubuntu/trusty64"
21       sub.vm.provision :shell, :path => "vagrant/ubuntu-trusty-php7-provision.sh"
22   end
23   config.vm.define "centos" do |sub|
24       sub.vm.box = "bento/centos-7.2"
25       sub.vm.provision :shell, :path => "vagrant/install-on-centos-7.sh"
26   end
27
28   # configure shared package cache if possible
29   #if Vagrant.has_plugin?("vagrant-cachier")
30   #  config.cache.enable :apt
31   #  config.cache.scope = :box
32   #end
33
34
35   config.vm.provider "virtualbox" do |vb|
36     vb.gui = false
37     vb.customize ["modifyvm", :id, "--memory", "2048"]
38   end
39
40
41   # config.vm.provider :digital_ocean do |provider, override|
42   #   override.ssh.private_key_path = '~/.ssh/id_rsa'
43   #   override.vm.box = 'digital_ocean'
44   #   override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box"
45
46   #   provider.token = ''
47   #   # provider.token = 'YOUR TOKEN'
48   #   provider.image = 'ubuntu-14-04-x64'
49   #   provider.region = 'nyc2'
50   #   provider.size = '512mb'
51   # end
52
53 end