Last active
August 29, 2015 14:04
-
-
Save olliebun/6ec1dd97bf7532d83de4 to your computer and use it in GitHub Desktop.
Vagrantfile to run Trusty at Pycon 2014
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
Vagrant.configure("2") do |config| | |
config.vm.define "main" do |config| | |
config.vm.box = "trusty" | |
config.vm.synced_folder "~/salt", "/salt" | |
config.vm.provider :virtualbox do |v| | |
v.customize ['modifyvm', :id, '--cpus', 2] | |
v.customize ['modifyvm', :id, '--memory', 1024] | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment