Skip to content

Instantly share code, notes, and snippets.

@alexphelps
Created April 6, 2015 03:01
Show Gist options
  • Save alexphelps/5a2dfc2ca46341d9e172 to your computer and use it in GitHub Desktop.
Save alexphelps/5a2dfc2ca46341d9e172 to your computer and use it in GitHub Desktop.
Base Vagrant Ubuntu Starter File
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network :private_network, ip: "192.168.22.100"
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "1024"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment