lldap/docker-entrypoint.sh
Jean-Francois Roy 7349b9069e docker: Allow chown commands to fail
chown may not be allowed in containers with restricted security
contexts. See https://github.com/truecharts/charts/pull/7779.
2023-03-16 21:30:47 -07:00

34 lines
938 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
CONFIG_FILE=/data/lldap_config.toml
if [[ ( ! -w "/data" ) ]] || [[ ( ! -d "/data" ) ]]; then
echo "[entrypoint] The /data folder doesn't exist or cannot be written to. Make sure to mount
a volume or folder to /data to persist data across restarts, and that the current user can
write to it."
exit 1
fi
if [[ ! -f "$CONFIG_FILE" ]]; then
echo "[entrypoint] Copying the default config to $CONFIG_FILE"
echo "[entrypoint] Edit this file to configure LLDAP."
cp /app/lldap_config.docker_template.toml $CONFIG_FILE
fi
if [[ ! -r "$CONFIG_FILE" ]]; then
echo "[entrypoint] Config file is not readable. Check the permissions"
exit 1;
fi
echo "> Setup permissions.."
find /app \! -user "$UID" -exec chown "$UID:$GID" '{}' + || true
find /data \! -user "$UID" -exec chown "$UID:$GID" '{}' + || true
echo "> Starting lldap.."
echo ""
exec gosu "$UID:$GID" /app/lldap "$@"
exec "$@"