Sha256: 7633d089af32fb216cc95c910f755df748a9c35366b63a41e9e0dc16f78a45ab
Contents?: true
Size: 881 Bytes
Versions: 1
Compression:
Stored size: 881 Bytes
Contents
#!/usr/bin/env /bin/bash apt-get update apt-get install -y build-essential libpam0g-dev apt-transport-https ca-certificates tree apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D echo 'deb https://apt.dockerproject.org/repo ubuntu-trusty main' > /etc/apt/sources.list.d/docker.list apt-get update apt-get install -y docker-engine gpasswd -a vagrant docker service docker restart curl -sSL https://rvm.io/mpapis.asc | gpg --import - curl -sSL https://get.rvm.io | bash -s stable echo 'source /etc/profile.d/rvm.sh' >> /etc/bash.bashrc echo 'export BUNDLE_GEMFILE=/vagrant/Gemfile' >> /etc/bash.bashrc sed -ir 's/# *(\".*history-search)/\1/' /etc/inputrc source /etc/profile.d/rvm.sh rvm group add rvm vagrant rvm install 2.2.1 --quiet-curl rvm --default use 2.2.1 gem install bundler cd /vagrant bundle install
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
superhosting-0.0.2 | provision/vagrant.sh |