#!/bin/bash -l set -e cd "$(dirname "$0")/.." bundle config --local path vendor bundle config --local jobs "$(nproc)" bundle install if command -v docker-compose; then docker-compose up -d else echo 'warning: docker-compose is not installed.' fi