-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
29 lines (22 loc) · 817 Bytes
/
Vagrantfile
File metadata and controls
29 lines (22 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.define 'flippermaps' do |machine|
machine.vm.box = "ubuntu/trusty64"
machine.vm.hostname = "flippermaps.dev"
machine.vm.network "private_network", ip: "192.168.33.125"
machine.vm.provision :ansible do |ansible|
ansible.inventory_path = "provisioning/hosts-vagrant"
ansible.sudo = true
ansible.playbook = "provisioning/flippermaps.yml"
ansible.limit = 'all'
ansible.verbose = 'v'
end
# machine.vm.synced_folder ".", "/vagrant", type: "nfs"
machine.vm.synced_folder ".", "/home/flippermaps/flippermaps", type: "nfs"
machine.vm.provider "virtualbox" do |vb|
vb.name = "flippermaps"
vb.customize ["modifyvm", :id, "--memory", "1024"]
end
end
end