You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
37 lines
1.2 KiB
#!/bin/sh
|
|
|
|
# CREDIT: https://github.com/nginxinc/docker-nginx/blob/f3d86e99ba2db5d9918ede7b094fcad7b9128cd8/mainline/alpine/docker-entrypoint.sh
|
|
|
|
set -e
|
|
|
|
if [ -n "${LIGHTTPD_QUIET_LOGS:-}" ]; then
|
|
exec 3>/dev/null
|
|
else
|
|
exec 3>&1
|
|
fi
|
|
|
|
if /usr/bin/find "/docker-entrypoint.d/" -mindepth 1 -maxdepth 1 -type f -print -quit 2>/dev/null | read v; then
|
|
echo >&3 "$0: /docker-entrypoint.d/ is not empty, will run .sh files there prior to regular entrypoint"
|
|
|
|
echo >&3 "$0: Looking for shell scripts in /docker-entrypoint.d/"
|
|
find "/docker-entrypoint.d/" -follow -type f -print | sort -V | while read -r f; do
|
|
case "$f" in
|
|
*.sh)
|
|
if [ -x "$f" ]; then
|
|
echo >&3 "$0: Launching $f";
|
|
"$f"
|
|
else
|
|
# warn on shell scripts without exec bit
|
|
echo >&3 "$0: Ignoring $f, not executable";
|
|
fi
|
|
;;
|
|
*) echo >&3 "$0: Ignoring $f";;
|
|
esac
|
|
done
|
|
|
|
echo >&3 "$0: Configuration complete; ready for start up"
|
|
else
|
|
echo >&3 "$0: No files found in /docker-entrypoint.d/, proceeding to regular entrypoint"
|
|
fi
|
|
|
|
lighttpd -D -f /etc/lighttpd/lighttpd.conf
|
|
|