forked from octavenz/wagtail-advanced-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVagrantfile
31 lines (23 loc) · 878 Bytes
/
Vagrantfile
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
29
30
31
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.network "forwarded_port", guest: 8000, host: 8019
config.vm.network "forwarded_port", guest: 1080, host: 1080, auto_correct: true
config.vm.network "private_network", ip: "192.168.20.20"
config.vm.synced_folder ".", "/home/vagrant/waf", create: true
# Provider-specific configuration so you can fine-tune various settings
# config.vm.provider "virtualbox" do |vb|
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
config.vm.provision :ansible do |ansible|
ansible.playbook = "provisioning/server.yml"
ansible.inventory_path = "provisioning/inventory"
ansible.limit = "development"
ansible.verbose = true
end
config.vm.provider "virtualbox" do |v|
v.linked_clone = true
end
end