Skip to content

Instantly share code, notes, and snippets.

@benjiqq
Created October 15, 2013 20:56
Show Gist options
  • Save benjiqq/6998530 to your computer and use it in GitHub Desktop.
Save benjiqq/6998530 to your computer and use it in GitHub Desktop.
minimal vagrant file
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "precise64"
config.vm.provision :shell, :path => "bootstrap.sh"
config.vm.network :forwarded_port, host: 8080, guest: 8080
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment