consul-getting-started icon indicating copy to clipboard operation
consul-getting-started copied to clipboard

Additional information on starting vagrant in Fedora needed

Open monrealis opened this issue 7 years ago • 2 comments

Unfortunately, default provider in Fedora is not virtualbox, so vagrant up does not work, vagrant up --provider=virtualbox is needed. An explanation in a text balloon would be welcome. :)

Thanks for the great course!

Related issue: https://github.com/mitchellh/vagrant/issues/8905

monrealis avatar Aug 21 '17 21:08 monrealis

Same with "Introduction to Versioning Environments With Vagrant"

monrealis avatar Aug 29 '17 19:08 monrealis

I ended up adding this to the Vagrant file to make it work:

adding this to VagrantFile to make it work with VirtualBox on fedora

ENV['VAGRANT_DEFAULT_PROVIDER'] = 'virtualbox'

tnhabib avatar Dec 01 '18 16:12 tnhabib