Add Vagrantfile

This commit is contained in:
Jan Philipp Timme 2019-01-26 11:10:20 +01:00
parent 50edc8dc84
commit e20b956911
1 changed files with 13 additions and 0 deletions

13
Vagrantfile vendored Normal file
View File

@ -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