File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ That's it.
25
25
After the installation has finished, you can access the virtual machine with
26
26
27
27
host $ vagrant ssh
28
- Welcome to Ubuntu 19.04 (GNU/Linux 5.0 .0-13 -generic x86_64)
28
+ Welcome to Ubuntu 19.10 (GNU/Linux 5.3 .0-18 -generic x86_64)
29
29
...
30
30
vagrant@rails-dev-box:~$
31
31
Original file line number Diff line number Diff line change 1
1
# -*- mode: ruby -*-
2
2
# vi: set ft=ruby :
3
3
Vagrant . configure ( '2' ) do |config |
4
- config . vm . box = 'ubuntu/disco64 ' # 19.04
4
+ config . vm . box = 'ubuntu/eoan64 ' # 19.10
5
5
config . vm . hostname = 'rails-dev-box'
6
6
7
7
config . vm . network :forwarded_port , guest : 3000 , host : 3000
@@ -12,4 +12,7 @@ Vagrant.configure('2') do |config|
12
12
v . memory = ENV . fetch ( 'RAILS_DEV_BOX_RAM' , 2048 ) . to_i
13
13
v . cpus = ENV . fetch ( 'RAILS_DEV_BOX_CPUS' , 2 ) . to_i
14
14
end
15
+
16
+ config . vm . boot_timeout = 600
17
+
15
18
end
You can’t perform that action at this time.
0 commit comments