Created
October 23, 2015 17:36
-
-
Save joefutrelle/45aa90ebf921886d5ce5 to your computer and use it in GitHub Desktop.
Vanilla Vagrantfile, Ubuntu 14.04 LTS, 2GB RAM
This file contains hidden or 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
| Vagrant.configure("2") do |config| | |
| config.vm.box = "ubuntu/trusty64" | |
| config.vm.provider "virtualbox" do |vb| | |
| vb.memory="2048" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment