File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ That's it.
27
27
After the installation has finished, you can access the virtual machine with
28
28
29
29
host $ vagrant ssh
30
- Welcome to Ubuntu 20.10 (GNU/Linux 5.8 .0-25 -generic x86_64)
30
+ Welcome to Ubuntu 21.04 (GNU/Linux 5.11 .0-16 -generic x86_64)
31
31
...
32
32
vagrant@rails-dev-box:~$
33
33
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/groovy64 ' # 20.10
4
+ config . vm . box = 'ubuntu/hirsute64 ' # 21.04
5
5
config . vm . hostname = 'rails-dev-box'
6
6
7
7
config . vm . network :forwarded_port , guest : 3000 , host : 3000
Original file line number Diff line number Diff line change @@ -22,15 +22,12 @@ echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/source
22
22
echo updating package information
23
23
apt-get -y update > /dev/null 2>&1
24
24
25
- install Ruby ruby-full
25
+ install Ruby ruby-full bundler
26
26
install ' development tools' build-essential autoconf libtool
27
27
28
28
# echo installing current RubyGems
29
29
gem update --system -N > /dev/null 2>&1
30
30
31
- echo installing Bundler
32
- gem install bundler -N > /dev/null 2>&1
33
-
34
31
install Git git
35
32
install SQLite sqlite3 libsqlite3-dev
36
33
install memcached memcached
You can’t perform that action at this time.
0 commit comments