#!/bin/bash set -e echo "Creating the Bridge database and the roles" # We're using 'template1' because we know it should exist. We should not actually change this database. psql -Xv ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname template1 <