mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-21 03:02:09 +00:00
bionic to centos, add vagrant-cachier
This commit is contained in:
parent
9ddca42c91
commit
dee38ad330
9
Vagrantfile
vendored
9
Vagrantfile
vendored
@ -2,7 +2,14 @@
|
||||
# vi: set ft=ruby :
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "ubuntu/bionic64"
|
||||
# config.vm.box = "ubuntu/bionic64"
|
||||
config.vm.box = "centos/7"
|
||||
|
||||
if Vagrant.has_plugin?("vagrant-cachier")
|
||||
# Configure cached packages to be shared between instances of the same base box.
|
||||
# More info on http://fgrehm.viewdocs.io/vagrant-cachier/usage
|
||||
config.cache.scope = :box
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user