From e20b9569114cffe5c5c545e1f51a84701c8074c5 Mon Sep 17 00:00:00 2001 From: Jan Philipp Timme Date: Sat, 26 Jan 2019 11:10:20 +0100 Subject: [PATCH] Add Vagrantfile --- Vagrantfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..bc2a198 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,13 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure("2") do |config| + config.vm.box = "debian/stretch64" + + config.vm.synced_folder "./", "/vagrant", type: "rsync" + + config.vm.provision "shell", inline: <<-SHELL + apt-get update + apt-get install -y postfix + SHELL +end