Skip to content

Instantly share code, notes, and snippets.

@briancain
Created November 24, 2014 01:16
Show Gist options
  • Save briancain/242725c1ad1119bf1940 to your computer and use it in GitHub Desktop.
Save briancain/242725c1ad1119bf1940 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "ubuntu", primary: true do |ubuntu|
ubuntu.vm.box = "trusty64"
ubuntu.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
ubuntu.vm.provider :virtualbox do |v|
v.memory = 4048
end
ubuntu.vm.hostname = "ubuntu.local.domain"
ubuntu.vm.network "private_network", ip: "192.168.33.11"
ubuntu.vm.synced_folder ".", "/vagrant", type: "nfs"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment