Skip to content

Instantly share code, notes, and snippets.

@1000k
Last active April 20, 2017 09:33
Show Gist options
  • Save 1000k/576ed0dc817f026b75a3f1b76ce147be to your computer and use it in GitHub Desktop.
Save 1000k/576ed0dc817f026b75a3f1b76ce147be to your computer and use it in GitHub Desktop.
Vagrantfile to build Ubuntu 16.04 Desktop
# -*- 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