lemur/docker/entrypoint

55 lines
2.1 KiB
Plaintext
Raw Normal View History

2018-12-30 21:37:46 +01:00
#!/bin/sh
2018-12-31 16:58:51 +01:00
if [ -z "${POSTGRES_USER}" ] || [ -z "${POSTGRES_PASSWORD}" ] || [ -z "${POSTGRES_HOST}" ] || [ -z "${POSTGRES_DB}" ];then
2018-12-31 18:36:02 +01:00
echo "Database vars not set"
2018-12-31 15:37:19 +01:00
exit 1
fi
export POSTGRES_PORT="${POSTGRES_PORT:-5432}"
echo 'export SQLALCHEMY_DATABASE_URI="postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB"' >> /etc/profile
source /etc/profile
2018-12-30 21:37:46 +01:00
2018-12-30 22:25:11 +01:00
PGPASSWORD=$POSTGRES_PASSWORD psql -h $POSTGRES_HOST -p $POSTGRES_PORT -U $POSTGRES_USER -d $POSTGRES_DB --command 'select 1;'
2018-12-31 15:37:19 +01:00
echo " # Create Postgres trgm extension"
2018-12-30 21:37:46 +01:00
PGPASSWORD=$POSTGRES_PASSWORD psql -h $POSTGRES_HOST -p $POSTGRES_PORT -U $POSTGRES_USER -d $POSTGRES_DB --command 'CREATE EXTENSION pg_trgm;'
2018-12-31 15:37:19 +01:00
echo " # Done"
2018-12-30 21:37:46 +01:00
2019-01-01 11:05:45 +01:00
if [ -z "${SKIP_SSL}" ]; then
2018-12-31 14:07:56 +01:00
if [ ! -f /etc/nginx/ssl/server.crt ] && [ ! -f /etc/nginx/ssl/server.key ]; then
2019-01-01 12:09:06 +01:00
openssl req -x509 -newkey rsa:4096 -nodes -keyout /etc/nginx/ssl/server.key -out /etc/nginx/ssl/server.crt -days 365 -subj "/C=US/ST=FAKE/L=FAKE/O=FAKE/OU=FAKE/CN=FAKE"
2018-12-31 14:07:56 +01:00
fi
2018-12-31 15:37:19 +01:00
mv /etc/nginx/conf.d/default-ssl.conf.a /etc/nginx/conf.d/default-ssl.conf
2019-01-01 11:46:56 +01:00
mv /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf.a
2018-12-31 16:58:51 +01:00
fi
2018-12-31 13:21:13 +01:00
2018-12-30 22:43:55 +01:00
# if [ ! -f /home/lemur/.lemur/lemur.conf.py ]; then
# echo "Creating config"
# https://github.com/Netflix/lemur/issues/2257
# python3 /opt/lemur/lemur/manage.py create_config
# echo "Done"
# fi
2018-12-31 15:37:19 +01:00
echo " # Running init"
2018-12-30 23:20:29 +01:00
su lemur -c "python3 /opt/lemur/lemur/manage.py init"
2018-12-31 15:37:19 +01:00
echo " # Done"
2018-12-30 22:25:11 +01:00
2018-12-30 22:43:55 +01:00
# echo "Creating user"
# https://github.com/Netflix/lemur/issues/
# echo "something that will create user" | python3 /opt/lemur/lemur/manage.py shell
# echo "Done"
2018-12-30 21:37:46 +01:00
2018-12-30 21:47:27 +01:00
cron_notify="${CRON_NOTIFY:-"0 22 * * *"}"
cron_sync="${CRON_SYNC:-"*/15 * * * *"}"
2019-01-01 11:33:49 +01:00
cron_revoked="${CRON_CHECK_REVOKED:-"0 22 * * *"}"
2018-12-30 21:37:46 +01:00
2018-12-31 15:37:19 +01:00
echo " # Populating crontab"
2019-01-01 11:33:49 +01:00
echo "${cron_notify} lemur python3 /opt/lemur/lemur/manage.py notify expirations" > /etc/crontabs/lemur_notify
echo "${cron_sync} lemur python3 /opt/lemur/lemur/manage.py source sync -s all" > /etc/crontabs/lemur_sync
echo "${cron_revoked} lemur python3 /opt/lemur/lemur/manage.py certificate check_revoked" > /etc/crontabs/lemur_revoked
2018-12-31 15:37:19 +01:00
echo " # Done"
2018-12-30 21:37:46 +01:00
exec "$@"