fix: Rootless entrypoint

This commit is contained in:
Nikita Pedorich
2025-01-09 21:51:27 +09:00
parent 418c317be1
commit b0ad5dc62f
2 changed files with 2 additions and 1 deletions

View File

@@ -83,6 +83,7 @@ init_diagram: |
"sonarr:latest" <- Base Images
# changelog
changelogs:
- {date: "09.01.25:", desc: "Fix rootless entrypoint."}
- {date: "23.12.24:", desc: "Rebase Alpine 3.21."}
- {date: "31.05.24:", desc: "Rebase Alpine 3.20."}
- {date: "12.01.24:", desc: "Update download url."}

View File

@@ -9,6 +9,6 @@ if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
else
exec \
s6-notifyoncheck -d -n 300 -w 1000 \
cd /app/sonarr/bin s6-setuidgid abc /app/sonarr/bin/Sonarr \
cd /app/sonarr/bin /app/sonarr/bin/Sonarr \
-nobrowser -data=/config
fi