From 6b36955c1a988509ce80b029a186d3a3ee2b9d20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Mon, 3 Feb 2020 09:22:59 +0100 Subject: [PATCH] Updated README to explain how to install the disksize Vagrant plugin. --- vagrant/README.rst | 1 + vagrant/Vagrantfile | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/vagrant/README.rst b/vagrant/README.rst index 107e420..b6cb72c 100644 --- a/vagrant/README.rst +++ b/vagrant/README.rst @@ -15,6 +15,7 @@ Installation of VirtualBox and Vagrant .. code-block:: bash $ sudo apt-get install virtualbox vagrant + $ vagrant plugin install vagrant-disksize Deployment of the front office diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile index e50ef32..98dcf71 100644 --- a/vagrant/Vagrantfile +++ b/vagrant/Vagrantfile @@ -11,6 +11,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Every Vagrant virtual environment requires a box to build off of. config.vm.box = "ubuntu/bionic64" + config.disksize.size = '50GB' config.vm.provision :shell, path: "bootstrap.sh" # Disable automatic box update checking. If you disable this, then @@ -53,8 +54,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # vb.gui = true # # # Use VBoxManage to customize the VM. For example to change memory: - vb.customize ["modifyvm", :id, "--memory", "1024"] - vb.customize ["modifyvm", :id, "--name", "MONARC FO - Ubuntu 18.04 - 1"] + vb.customize ["modifyvm", :id, "--memory", "2048"] + vb.customize ["modifyvm", :id, "--name", "MONARC FO - Ubuntu 18.04 - DEV"] end # # View the documentation for the provider you're using for more