Install Collabora

This commit is contained in:
2020-12-07 21:55:23 +00:00
parent 6a465ffcd5
commit dd81fe9998
4 changed files with 94 additions and 11 deletions

17
Vagrantfile vendored
View File

@@ -50,14 +50,15 @@ Vagrant.configure("2") do |config|
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
#
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
# vb.gui = true
# Customize the amount of memory on the VM:
vb.memory = 4096
vb.cpus = 2
end
# View the documentation for the provider you are using for more
# information on available options.