2015-06-25 05:21:32 +03:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
# Apache webserver
|
|
|
|
config.vm.network "forwarded_port", guest: 8089, host: 8089
|
|
|
|
|
|
|
|
# If true, then any SSH connections made will enable agent forwarding.
|
|
|
|
config.ssh.forward_agent = true
|
|
|
|
|
2016-02-09 01:44:27 +03:00
|
|
|
config.vm.synced_folder ".", "/home/vagrant/Nominatim"
|
2015-06-25 05:21:32 +03:00
|
|
|
|
2016-02-09 00:58:59 +03:00
|
|
|
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 "centos" do |sub|
|
|
|
|
sub.vm.box = "bento/centos-7.2"
|
|
|
|
sub.vm.provision :shell, :path => "vagrant/centos-7-provision.sh"
|
|
|
|
end
|
2015-06-25 05:21:32 +03:00
|
|
|
|
|
|
|
# configure shared package cache if possible
|
2016-02-09 00:58:59 +03:00
|
|
|
#if Vagrant.has_plugin?("vagrant-cachier")
|
|
|
|
# config.cache.enable :apt
|
|
|
|
# config.cache.scope = :box
|
|
|
|
#end
|
2015-06-25 05:21:32 +03:00
|
|
|
|
|
|
|
|
|
|
|
config.vm.provider "virtualbox" do |vb|
|
|
|
|
vb.gui = false
|
2015-07-09 04:45:31 +03:00
|
|
|
vb.customize ["modifyvm", :id, "--memory", "2048"]
|
2015-06-25 05:21:32 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2015-06-29 00:54:48 +03:00
|
|
|
# config.vm.provider :digital_ocean do |provider, override|
|
|
|
|
# override.ssh.private_key_path = '~/.ssh/id_rsa'
|
|
|
|
# override.vm.box = 'digital_ocean'
|
|
|
|
# override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box"
|
|
|
|
|
|
|
|
# provider.token = ''
|
|
|
|
# # provider.token = 'YOUR TOKEN'
|
|
|
|
# provider.image = 'ubuntu-14-04-x64'
|
|
|
|
# provider.region = 'nyc2'
|
|
|
|
# provider.size = '512mb'
|
|
|
|
# end
|
2015-06-25 05:21:32 +03:00
|
|
|
|
|
|
|
end
|