Skip to content

Instantly share code, notes, and snippets.

@vfarcic
Created January 24, 2015 19:27
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 vfarcic/04060cbeb213be52d125 to your computer and use it in GitHub Desktop.
Save vfarcic/04060cbeb213be52d125 to your computer and use it in GitHub Desktop.
Ubuntu
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.synced_folder ".", "/vagrant"
config.vm.provider "virtualbox" do |v|
v.name = "books-service"
v.memory = 1024
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment