consul-getting-started
consul-getting-started copied to clipboard
Additional information on starting vagrant in Fedora needed
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
Same with "Introduction to Versioning Environments With Vagrant"
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'