mailinabox/Vagrantfile

41 lines
1.3 KiB
Ruby
Raw Normal View History

2020-07-08 18:31:35 +00:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
2020-08-10 02:06:59 +00:00
config.vm.box = "debian/buster64"
2020-07-08 18:31:35 +00:00
config.vm.provider :virtualbox do |vb|
2020-08-10 02:06:59 +00:00
vb.customize ["modifyvm", :id, "--cpus", 4, "--memory", 4096]
end
config.vm.provider :libvirt do |v|
v.memory = 4096
v.cpus = 4
v.nested = true
end
config.vm.provider :kvm do |kvm|
kvm.memory_size = '4096m'
2020-04-11 18:12:40 +00:00
end
# Network config: Since it's a mail server, the machine must be connected
# to the public web. However, we currently don't want to expose SSH since
# the machine's box will let anyone log into it. So instead we'll put the
# machine on a private network.
config.vm.hostname = "mailinabox.lan"
config.vm.network "private_network", ip: "192.168.50.4"
2020-08-10 02:06:59 +00:00
config.vm.synced_folder ".", "/vagrant", nfs_version: "3"
#, :mount_options => ["ro"]
config.vm.provision :shell, :inline => <<-SH
# Set environment variables so that the setup script does
# not ask any questions during provisioning. We'll let the
# machine figure out its own public IP.
export NONINTERACTIVE=1
2020-08-10 02:06:59 +00:00
export PUBLIC_IP=192.168.50.4
export PUBLIC_IPV6=auto
export PRIMARY_HOSTNAME=auto
2020-07-08 18:31:35 +00:00
export SKIP_NETWORK_CHECKS=1
# Start the setup script.
2020-07-08 18:31:35 +00:00
cd /vagrant
setup/start.sh
SH
2020-07-08 18:31:35 +00:00
end