Skip to content
Snippets Groups Projects
Commit 69fbe895 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

ALlow using all $POSTGRES_* variables to ease combination with postgres Docker image.

parent c8ec8821
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
GUNICORN_BIND=${GUNICORN_BIND:-0.0.0.0:8000}
POSTGRES_HOST=${BISCUIT_database__host:-127.0.0.1}
POSTGRES_PORT=${BISCUIT_database__port:-5432}
POSTGRES_HOST=${POSTGRES_HOST:-127.0.0.1}
POSTGRES_PORT=${POSTGRES_PORT:-5432}
POSTGRES_DB=${POSTGRES_DB:-biscuit}
POSTGRES_USER=${POSTGRES_USER:-biscuit}
[[ -n $POSTGRES_PASSWORD ]] && BISCUIT_database__password=$POSTGRES_PASSWORD
BISCUIT_database__host=${BISCUIT_database__host:-$POSTGRES_HOST}
BISCUIT_database__port=${BISCUIT_database__port:-$POSTGRES_PORT}
BISCUIT_database__name=${BISCUIT_database__name:-$POSTGRES_DB}
BISCUIT_database__user=${BISCUIT_database__user:-$POSTGRES_USER}
BISCUIT_database__password=${BISCUIT_database__password:-$POSTGRES_PASSWORD}
while ! nc -z $POSTGRES_HOST $POSTGRES_PORT; do
while ! nc -z $BISCUIT_database__host $BISCUIT_database__port; do
sleep 0.1
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment