Skip to content

Commit

Permalink
Keep vm.box for non docker compat #4
Browse files Browse the repository at this point in the history
  • Loading branch information
pentatonicfunk committed Oct 17, 2021
1 parent 1cda256 commit ff1b71b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ Vagrant.configure('2') do |config|
# This box is provided by Bento boxes via vagrantcloud.com and is a nicely sized
# box containing the Ubuntu 20.04 Focal 64 bit release. Once this box is downloaded
# to your host computer, it is cached for future use under the specified box name.
# config.vm.box = 'bento/ubuntu-20.04'
config.vm.box = 'bento/ubuntu-20.04'
config.vm.box_check_update = false

# If we're at a contributor day, switch the base box to the prebuilt one
Expand Down Expand Up @@ -453,6 +453,7 @@ Vagrant.configure('2') do |config|

# Docker use image.
config.vm.provider :docker do |d|
config.vm.box = ''
d.image = 'pentatonicfunk/vagrant-ubuntu-base-images:20.04'
d.has_ssh = true
if VOS.mac?
Expand Down

0 comments on commit ff1b71b

Please sign in to comment.