Skip to content

Instantly share code, notes, and snippets.

@nicopaez
Created July 28, 2016 23:01
Show Gist options
  • Save nicopaez/a75db64064b30dc143f9ed1f889615cd to your computer and use it in GitHub Desktop.
Save nicopaez/a75db64064b30dc143f9ed1f889615cd to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty32"
config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.network "forwarded_port", guest: 8080, host: 8090
config.vm.network "forwarded_port", guest: 4567, host: 4567
config.vm.provider "virtualbox" do |vb|
# vb.gui = true
vb.memory = "1024"
end
config.vm.provision "shell", privileged: false, inline: <<-SHELL
sudo apt-get update
sudo apt-get install -y git
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
curl -sSL https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm install 2.2.4
gem install bundler
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment