Skip to content

Instantly share code, notes, and snippets.

@royopa
Forked from rogeriopradoj/Vagrantfile
Created October 15, 2019 11:28
Show Gist options
  • Save royopa/d9df176d43eb785e4783e8a967bf4dd6 to your computer and use it in GitHub Desktop.
Save royopa/d9df176d43eb785e4783e8a967bf4dd6 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
config.vm.provision "shell", inline: <<-SHELL
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco upgrade powerbi -Y
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment