AppFlowy/backend/scripts/database/init_postgres.sh
2021-09-02 17:32:30 +08:00

15 lines
349 B
Bash
Executable File

#!/usr/bin/env bash
set -x
set -eo pipefail
if [[ -z "${SKIP_DOCKER}" ]]
then
docker run \
-e POSTGRES_USER=${DB_USER} \
-e POSTGRES_PASSWORD=${DB_PASSWORD} \
-e POSTGRES_DB=${DB_NAME} \
-p "${DB_PORT}":5432 \
-d postgres \
postgres -N 1000
fi
# ^ Increased maximum number of connections for testing purposes