Remove Vagrantfile

It is no longer supported
This commit is contained in:
Tom Wiesing 2022-11-16 12:40:39 +01:00
parent 6f4f33e31f
commit 0ef48c2290
No known key found for this signature in database

27
Vagrantfile vendored
View file

@ -1,27 +0,0 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# use an iamge of debian, in this case buster 64
config.vm.box = "debian/buster64"
# forward ports 80, 443 and 2222 to the host system
# this will allow accessing the webserver from the real system.
config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.network "forwarded_port", guest: 443, host: 4443
config.vm.network "forwarded_port", guest: 2222, host: 2223
# share the factory folder in /factory/
config.vm.synced_folder "distillery/", "/distillery/"
# for performance, we setup 4GB of memort and 2 CPUs
config.vm.provider "virtualbox" do |vb|
vb.memory = 4096
vb.cpus = 2
# temporary fix for Monetary - see https://github.com/hashicorp/vagrant/issues/10314
vb.gui = true
end
# tell the user where things are.
config.vm.post_up_message = "Ready to distil and make WissKIs. Scripts can be found in /distillery/. "
end