Last active
April 20, 2017 09:33
-
-
Save 1000k/576ed0dc817f026b75a3f1b76ce147be to your computer and use it in GitHub Desktop.
Vagrantfile to build Ubuntu 16.04 Desktop
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Type `vagrant up desktop` to launch | |
Vagrant.configure("2") do |config| | |
config.vm.define "desktop" do |desktop| | |
desktop.vm.box = "boxcutter/ubuntu1604-desktop" | |
config.vm.provider "virtualbox" do |vb| | |
vb.cpus = 2 | |
vb.memory = "2048" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment