mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-05-03 03:57:23 -05:00
11 lines
216 B
Bash
11 lines
216 B
Bash
#! /bin/sh
|
|
|
|
set -eu
|
|
|
|
databases="friends super_mario_maker"
|
|
|
|
for database in $databases; do
|
|
echo "Creating database: $database"
|
|
psql -v ON_ERROR_STOP=1 -U "$POSTGRES_USER" -c "CREATE DATABASE $database;"
|
|
done
|