mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-13 16:14:07 -08:00
e53d5d9cc1
* persist postgres data using docker volumes * persist n8n data using docker volumes instead of writing to the host filesystem * wait for postgres to be actually ready before starting the server * run web server and workers as separate containers * create a new `withPostgresAndWorker` example
13 lines
432 B
Bash
Executable file
13 lines
432 B
Bash
Executable file
#!/bin/bash
|
|
set -e;
|
|
|
|
|
|
if [ -n "${POSTGRES_NON_ROOT_USER:-}" ] && [ -n "${POSTGRES_NON_ROOT_PASSWORD:-}" ]; then
|
|
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
|
|
CREATE USER ${POSTGRES_NON_ROOT_USER} WITH PASSWORD '${POSTGRES_NON_ROOT_PASSWORD}';
|
|
GRANT ALL PRIVILEGES ON DATABASE ${POSTGRES_DB} TO ${POSTGRES_NON_ROOT_USER};
|
|
EOSQL
|
|
else
|
|
echo "SETUP INFO: No Environment variables given!"
|
|
fi
|