Skip to content

Instantly share code, notes, and snippets.

@ashrithr
Created July 16, 2015 04:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashrithr/463ca2c3d616e983b72e to your computer and use it in GitHub Desktop.
Save ashrithr/463ca2c3d616e983b72e to your computer and use it in GitHub Desktop.
Vagrantfile for ubuntu trusty 14.04 x86
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.hostname = "docker.local"
config.vm.network :private_network, ip: "192.168.0.42"
config.vm.provider :virtualbox do |vb|
vb.memory = 2048
vb.cpus = 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment