entrypoint-wrapper.sh 239 B

123456
  1. #!/usr/bin/env bash
  2. set -Eeo pipefail
  3. # This password is set for the postgres user when initializing the database. It is not needed and thus not printed.
  4. export POSTGRES_PASSWORD=$(pwgen -1 -s 32)
  5. /usr/local/bin/docker-entrypoint.sh "$@"