You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
464 B
Bash
16 lines
464 B
Bash
4 years ago
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
# Run once as part of Docker build script to initialize
|
||
|
# the database with encryption for user passwords.
|
||
|
|
||
|
POSTGRES_USER=${POSTGRES_USER:-"dev"}
|
||
|
POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-"dev"}
|
||
|
|
||
|
psql -v ON_ERROR_STOP=1 \
|
||
|
--username "$POSTGRES_USER" \
|
||
|
--dbname "$POSTGRES_DB" <<-EOSQL
|
||
|
SET password_encryption = "scram-sha-256";
|
||
|
ALTER USER "$POSTGRES_USER" WITH ENCRYPTED PASSWORD '$POSTGRES_PASSWORD';
|
||
|
EOSQL
|