#!/bin/bash if [ -d '/usr/app' ]; then if [ ! -f 'config/application.yml' ]; then echo '' echo -e "\E[1;31m###################################" echo "Missing application.yml" echo -e "\E[1;32m cp config/application.yml.sample config/application.yml" tput sgr0 echo "edit and update proper values" echo '' else if [ ! -f '/root/.container-setup' ]; then bundle npm install bower install --allow-root rails db:setup rails db:migrate rails db:fixtures:load touch /root/.container-setup fi echo 'Delete ~/.container-setup and re-run startup script to update app.' rails s -b 0.0.0.0 fi else echo "Are you in docker container?" fi