Created
July 16, 2015 04:44
-
-
Save ashrithr/463ca2c3d616e983b72e to your computer and use it in GitHub Desktop.
Vagrantfile for ubuntu trusty 14.04 x86
This file contains 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 : | |
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