From c6162452b1bda6c3110d4635b51a5180113379d3 Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Mon, 20 Jul 2020 11:12:56 +0700 Subject: [PATCH] Add Vagrant --- Vagrantfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 00000000..88c2002f --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,14 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure("2") do |config| + config.vm.box = "ubuntu/bionic64" + + config.vm.provider "virtualbox" do |vb| + vb.memory = "8192" + end + + config.vm.provision "ansible" do |ansible| + ansible.playbook = "playbook.yml" + end +end