1
0
Fork 0
mirror of https://github.com/Luzifer/nginx-sso.git synced 2024-10-18 15:44:21 +00:00
nginx-sso/docker-start.sh

18 lines
512 B
Bash
Raw Permalink Normal View History

#!/usr/local/bin/dumb-init /bin/bash
set -euo pipefail
# Copy frontend if not available
[ -d /data/frontend ] || cp -r /go/src/github.com/Luzifer/nginx-sso/frontend /data/frontend
[ -e /data/config.yaml ] || {
cp /go/src/github.com/Luzifer/nginx-sso/config.yaml /data/config.yaml
echo "An example configuration was copied to /data/config.yaml - You want to edit that one!"
exit 1
}
echo "Starting nginx-sso"
exec /go/bin/nginx-sso \
--config /data/config.yaml \
--frontend-dir /data/frontend \
$@