Skip to content

Instantly share code, notes, and snippets.

@craigbeck
Created November 14, 2014 21:31
Show Gist options
  • Save craigbeck/28da66c9e07142f52359 to your computer and use it in GitHub Desktop.
Save craigbeck/28da66c9e07142f52359 to your computer and use it in GitHub Desktop.
Fedora/Rails/Docker Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
RAILS_PORT = 3000
RVM_RUBY_VERSION = "1.9.3-p448"
config.vm.box = "kreiggers/fedora-19"
config.vm.network "forwarded_port", guest: RAILS_PORT, host: RAILS_PORT
$install_railsenv = <<EOF
# sqlite, execjs dependencies + npm, git
sudo yum install -y sqlite-devel nodejs npm git
# open firewall for default rails server port
sudo firewall-cmd --add-port=#{RAILS_PORT}/tcp
EOF
$install_docker = <<EOF
# https://gist.github.com/craigbeck/93368141b06288ccf1ae
# install docker and ensure starts as service
sudo yum -y install docker-io && \
sudo service docker start && \
sudo chkconfig docker on
# add vagrant user to docker group so sudo not required
sudo usermod -aG docker vagrant
EOF
$install_user_rvm = <<EOF
# install rvm ruby
curl -sSL https://rvm.io/mpapis.asc | gpg2 --import -
curl -sSL https://get.rvm.io | bash -s stable --ruby=#{RVM_RUBY_VERSION}
echo "source /home/vagrant/.rvm/scripts/rvm" >> /home/vagrant/.bashrc
echo "source ~/.profile" >> /home/vagrant/.bash_profile
EOF
# these things need to be installed w sudo
config.vm.provision "shell", inline: $install_railsenv
config.vm.provision "shell", inline: $install_docker
# these steps happen w vagrant user
config.vm.provision "shell", inline: $install_user_rvm, privileged: false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment