docker: Allow chown commands to fail

chown may not be allowed in containers with restricted security
contexts. See https://github.com/truecharts/charts/pull/7779.
This commit is contained in:
Jean-Francois Roy 2023-03-16 21:30:45 -07:00
parent 9e479d38fe
commit 7349b9069e

View File

@ -22,8 +22,8 @@ if [[ ! -r "$CONFIG_FILE" ]]; then
fi
echo "> Setup permissions.."
find /app \! -user "$UID" -exec chown "$UID:$GID" '{}' +
find /data \! -user "$UID" -exec chown "$UID:$GID" '{}' +
find /app \! -user "$UID" -exec chown "$UID:$GID" '{}' + || true
find /data \! -user "$UID" -exec chown "$UID:$GID" '{}' + || true
echo "> Starting lldap.."