DiscordChatExporter/docker-entrypoint.sh

11 lines
263 B
Bash
Raw Normal View History

#!/usr/bin/env sh
# If we are root, ensure the files in /out are writable
# by the dce user and restart the process as the dce user
if [ "$(id -u)" = '0' ]; then
chown -R dce:dce /out
exec su-exec dce "$0" "$@"
fi
2024-01-31 14:32:40 -05:00
exec /opt/app/DiscordChatExporter.Cli "$@"