Skip to content

Instantly share code, notes, and snippets.

@rogeriopradoj
Created September 6, 2019 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rogeriopradoj/0b4ae77419dafef3d67526d63e914290 to your computer and use it in GitHub Desktop.
Save rogeriopradoj/0b4ae77419dafef3d67526d63e914290 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "peru/windows-10-enterprise-x64-eval"
config.vm.synced_folder "data", "/vagrant_data"
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
vb.gui = true
# Customize the amount of memory on the VM:
vb.memory = "4096"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment