I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit ba55ec09 authored by aargh's avatar aargh Committed by idk
Browse files

Allow chown to fail so files can be managed via docker configs and secrets

parent b63a2e41
No related branches found
No related tags found
1 merge request!48Allow chown to fail so files can be managed via docker configs and secrets
......@@ -19,8 +19,8 @@ echo "$APP_USER:x:$GROUP_ID:" >> /etc/group
# Make sure APP_HOME is editable by the user
if [[ -n "$APP_HOME" ]] ; then
chown -R "$APP_USER" "$APP_HOME"
chmod -R u+rw "$APP_HOME"
chown -R "$APP_USER" "$APP_HOME" || true
chmod -R u+rw "$APP_HOME" || true
fi
# vim:ft=sh:ts=4:sw=4:et:sts=4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment