We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17b58e6 commit 4d87263Copy full SHA for 4d87263
README.md
@@ -12,6 +12,8 @@ This project automates the setup of a development environment for working on Rub
12
13
* [Vagrant 2](http://vagrantup.com)
14
15
+* Install the `vagrant-vbguest` plugin: `vagrant plugin install vagrant-vbguest`.
16
+
17
## How To Build The Virtual Machine
18
19
Building the virtual machine is this easy:
Vagrantfile
@@ -1,7 +1,7 @@
1
# -*- mode: ruby -*-
2
# vi: set ft=ruby :
3
Vagrant.configure('2') do |config|
4
- config.vm.box = 'ubuntu/disco64' # 19.04
+ config.vm.box = 'ubuntu/eoan64' # 19.10
5
config.vm.hostname = 'rails-dev-box'
6
7
config.vm.network :forwarded_port, guest: 3000, host: 3000
0 commit comments