Created
October 18, 2023 06:29
-
-
Save lawson-ng/dbe756607ffdabcb0af7f68132ea4104 to your computer and use it in GitHub Desktop.
Pg init Database
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
set -u | |
function create_user_and_database() { | |
local database=$1 | |
echo " Creating user and database '$database'" | |
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL | |
CREATE USER $database; | |
CREATE DATABASE $database; | |
GRANT ALL PRIVILEGES ON DATABASE $database TO $database; | |
EOSQL | |
} | |
if [ -n "$POSTGRES_MULTIPLE_DATABASES" ]; then | |
echo "Multiple database creation requested: $POSTGRES_MULTIPLE_DATABASES" | |
for db in $(echo $POSTGRES_MULTIPLE_DATABASES | tr ',' ' '); do | |
create_user_and_database $db | |
done | |
echo "Multiple databases created" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment