From c980d08d29dff58522a7d2bbd95f0bd47073830c Mon Sep 17 00:00:00 2001 From: Adam Mulvany <amulvany@gitlab.com> Date: Mon, 1 May 2017 14:48:10 +0700 Subject: [PATCH] Updated readme --- README.md | 4 ++++ Vagrantfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 254d197..3a987e9 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,10 @@ i.e. The application will be available on http://localhost:version}. If the port is 3 digits and another 0, i.e. Version 9.1.1 will accessible from https://localhost:9110 on the host. +#### Connect via SSH + +If you need to SSH onto the guest VM then: +`VERSION=9.1.1 EDITION="ee" vagrant ssh` #### Cleanup diff --git a/Vagrantfile b/Vagrantfile index e9a2b0a..d4b46d1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -12,7 +12,7 @@ Vagrant.configure("2") do |config| auto_correct: true config.vm.provider "virtualbox" do |vb| - vb.memory = "2048" + vb.memory = "4096" end config.vm.provision "shell", inline: <<-SHELL -- GitLab