mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-03-07 18:44:07 +00:00
first version of Vagrant installation instructions
This commit is contained in:
49
Vagrantfile
vendored
Normal file
49
Vagrantfile
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
|
||||
# Ubuntu LTS 14.04
|
||||
config.vm.box = "ubuntu/trusty64"
|
||||
|
||||
# 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
|
||||
|
||||
config.vm.synced_folder ".", "/home/vagrant/Nominatim"
|
||||
|
||||
|
||||
|
||||
# provision using a simple shell script
|
||||
config.vm.provision :shell, :path => "vagrant-provision.sh"
|
||||
|
||||
|
||||
# configure shared package cache if possible
|
||||
if Vagrant.has_plugin?("vagrant-cachier")
|
||||
config.cache.enable :apt
|
||||
config.cache.scope = :box
|
||||
end
|
||||
|
||||
|
||||
config.vm.provider "virtualbox" do |vb|
|
||||
vb.gui = false
|
||||
vb.customize ["modifyvm", :id, "--memory", "1024"]
|
||||
end
|
||||
|
||||
|
||||
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 = 'e74c5c15501bd2782e689b0805ad577f954bfd39ea1fde3f17ff62835f2fc6c1'
|
||||
# provider.token = 'YOUR TOKEN'
|
||||
provider.image = 'ubuntu-14-04-x64'
|
||||
provider.region = 'nyc2'
|
||||
provider.size = '512mb'
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user