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

Fix variable.

parent 0e0d88c7
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ services:
environment:
- BISCUIT_http__allowed_hosts="['*']"
- BISCUIT_caching__memcached__address=memcached:11211
- BISCUIT_databae__host=db
- BISCUIT_database__host=db
depends_on:
- db
- memcached
......
#!/bin/bash
GUNICORN_BIND=${GUNICORN_BIND:-0.0.0.0:8000}
POSTGRES_HOST=${POSTGRES_HOST:-127.0.0.1}
POSTGRES_PORT=${POSTGRES_PORT:-5432}
POSTGRES_DB=${POSTGRES_DB:-biscuit}
POSTGRES_USER=${POSTGRES_USER:-biscuit}
export BISCUIT_database__host=${BISCUIT_database__host:-$POSTGRES_HOST}
export BISCUIT_database__port=${BISCUIT_database__port:-$POSTGRES_PORT}
export BISCUIT_database__name=${BISCUIT_database__name:-$POSTGRES_DB}
export BISCUIT_database__user=${BISCUIT_database__user:-$POSTGRES_USER}
export BISCUIT_database__password=${BISCUIT_database__password:-$POSTGRES_PASSWORD}
export BISCUIT_database__host=${BISCUIT_database__host:-127.0.0.1}
export BISCUIT_database__port=${BISCUIT_database__port:-5432}
if [[ -z $BISCUIT_secret_key ]]; then
if [[ ! -e /etc/biscuit/secret_key ]]; then
......@@ -27,8 +20,4 @@ done
python manage.py flush --no-input
python manage.py migrate
if [[ -n "$@" ]]; then
exec "$@"
else
exec gunicorn biscuit.core.wsgi --bind ${GUNICORN_BIND}
fi
exec gunicorn biscuit.core.wsgi --bind ${GUNICORN_BIND}
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