diff options
| author | Luke Hoersten <[email protected]> | 2018-08-16 20:25:56 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2018-08-16 20:25:56 -0500 |
| commit | 608c3aa2dd6a35d8fe434d60822314cc23bd4314 (patch) | |
| tree | 3c3656929b8d26c42eb901f7274e24c033fed99c /Vagrantfile | |
Initial commit.
Diffstat (limited to 'Vagrantfile')
| -rw-r--r-- | Vagrantfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..284cc03 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,24 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure("2") do |config| + config.vm.box = "ubuntu/bionic64" + + config.vm.network "forwarded_port", guest: 4000, host: 4000 + # config.vm.synced_folder "../data", "/vagrant_data" + + # config.vm.provider "virtualbox" do |vb| + # # Display the VirtualBox GUI when booting the machine + # vb.gui = true + # + # # Customize the amount of memory on the VM: + # vb.memory = "1024" + # end + + config.vm.provision "ansible" do |ansible| + ansible.limit = "all,localhost" + # ansible.verbose = "vvv" + ansible.playbook = "vagrant.yaml" + ansible.compatibility_mode = "2.0" + end +end |
