Created
February 13, 2020 02:30
-
-
Save mcasperson/82ef0dfd041d72f0034c4af999c21021 to your computer and use it in GitHub Desktop.
Vangrant minimum example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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