Last active
December 23, 2021 05:31
-
-
Save simt2/8178ea232c4ebbae3c88cfbd3e6b146d to your computer and use it in GitHub Desktop.
Adding an additional disk to a VirtualBox machine in Vagrant via the experimental disks feature
This file contains 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
# Enable the experimental disks feature via environment variable, requires Vagrant >=2.2.8. | |
ENV["VAGRANT_EXPERIMENTAL"] = "disks" | |
Vagrant.configure(2) do |config| | |
config.vm.disk :disk, name: "storage", size: "4GB" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm referring to https://www.vagrantup.com/docs/disks/usage ... no "Available starting with Vx.y.z" info there at all. Not complaining about your example, but about the way Vagrant online documentation is organized ...