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

Skip to content
Snippets Groups Projects
Commit 5e7a00ed authored by idk's avatar idk
Browse files

Merge branch 'fix-docker-configs-support' into 'master'

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

See merge request !48
parents 0b058c0f ba55ec09
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