fix permissions
All checks were successful
Docker Build Smart Logic / Build amd64 & arm64 (push) Successful in 12s

This commit is contained in:
2026-02-08 21:42:50 +01:00
parent 528d4db2c3
commit fd1cf4a6f6

View File

@@ -17,6 +17,8 @@ if [ ! -f /app/www/index.html ]; then
fi fi
# Rechte setzen # Rechte setzen
chown -R abc:users /config /app/www echo "Setze Berechtigungen auf PUID: ${PUID:-911} und PGID: ${PGID:-1000}"
chown -R "${PUID:-911}:${PGID:-1000}" /config
chown -R "${PUID:-911}:${PGID:-1000}" /app/www
echo "Ende: init-lighttpd-config" echo "Ende: init-lighttpd-config"