Skip to content

Instantly share code, notes, and snippets.

@mcasperson
Created February 13, 2020 02:30
Show Gist options
  • Select an option

  • Save mcasperson/82ef0dfd041d72f0034c4af999c21021 to your computer and use it in GitHub Desktop.

Select an option

Save mcasperson/82ef0dfd041d72f0034c4af999c21021 to your computer and use it in GitHub Desktop.
Vangrant minimum example
# Launch with:
# vagrant up --provider hyperv
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/bionic64"
config.vm.box_version = "1.0.282"
# Use the default switch to get access to the internet
config.vm.network 'public_network', bridge: 'Default Switch'
# Disabled the shared folder - https://github.com/hashicorp/vagrant/issues/1004
config.vm.synced_folder '.', '/vagrant', disabled: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment