duplicate 463711317d2b97215af608456fbae76cd643b8a7 changes (memory)

This commit is contained in:
Ed Chalstrey 2022-02-02 17:03:16 +00:00
parent 95ea483bf4
commit cf762f8c4b

8
Vagrantfile vendored
View File

@ -12,7 +12,7 @@ Vagrant.configure("2") do |config|
# Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search.
config.vm.box = "bento/ubuntu-18.04"
config.vm.box = "ubuntu/focal64"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine and only allow access
@ -30,10 +30,10 @@ Vagrant.configure("2") do |config|
# Using VirtualBox:
config.vm.provider :virtualbox do |vm|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
# vm.gui = true
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
vm.memory = "2048" # default, 1024 was not enough
# Enable creating symlinks in shared folder
# On a Windows host, vagrant will need to run with permissions to 'Create Symlinks', either
@ -46,4 +46,4 @@ Vagrant.configure("2") do |config|
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
config.vm.provision "shell", path: "provision/vm_provision.sh"
end
end