]> git.openstreetmap.org Git - nominatim.git/blob - Vagrantfile
add vagrant script for CentOS
[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: 8089, host: 8089
7
8   # If true, then any SSH connections made will enable agent forwarding.
9   config.ssh.forward_agent = true
10
11   #config.vm.synced_folder ".", "/home/vagrant/Nominatim"
12
13   config.vm.define "ubuntu" do |sub|
14       sub.vm.box = "ubuntu/trusty64"
15       sub.vm.provision :shell, :path => "vagrant/ubuntu-trusty-provision.sh"
16   end
17   config.vm.define "centos" do |sub|
18       sub.vm.box = "bento/centos-7.2"
19       sub.vm.provision :shell, :path => "vagrant/centos-7-provision.sh"
20   end
21
22   # configure shared package cache if possible
23   #if Vagrant.has_plugin?("vagrant-cachier")
24   #  config.cache.enable :apt
25   #  config.cache.scope = :box
26   #end
27
28
29   config.vm.provider "virtualbox" do |vb|
30     vb.gui = false
31     vb.customize ["modifyvm", :id, "--memory", "2048"]
32   end
33
34
35   # config.vm.provider :digital_ocean do |provider, override|
36   #   override.ssh.private_key_path = '~/.ssh/id_rsa'
37   #   override.vm.box = 'digital_ocean'
38   #   override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box"
39
40   #   provider.token = ''
41   #   # provider.token = 'YOUR TOKEN'
42   #   provider.image = 'ubuntu-14-04-x64'
43   #   provider.region = 'nyc2'
44   #   provider.size = '512mb'
45   # end
46
47 end