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