mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-10 23:54:13 -08:00
16 lines
327 B
Bash
16 lines
327 B
Bash
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
PUID=${PUID=1000}
|
|
PGID=${PGID=1000}
|
|
|
|
files_ownership () {
|
|
chown -hRc "$PUID":"$PGID" /app/data
|
|
}
|
|
|
|
echo "==> Performing startup jobs and maintenance tasks"
|
|
files_ownership
|
|
|
|
echo "==> Starting application with user $PUID group $PGID"
|
|
exec setpriv --reuid "$PUID" --regid "$PGID" --clear-groups "$@"
|