Remove Vagrantfile
It is no longer supported
This commit is contained in:
parent
6f4f33e31f
commit
0ef48c2290
1 changed files with 0 additions and 27 deletions
27
Vagrantfile
vendored
27
Vagrantfile
vendored
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue