Skip to content

Commit

Permalink
Suppress init volume errors
Browse files Browse the repository at this point in the history
  • Loading branch information
csandanov committed May 1, 2024
1 parent c42f514 commit 44fa997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ RUN set -ex; \
apk add --no-cache --virtual .nginx-rundeps $runDeps; \
\
# Script to fix volumes permissions via sudo.
echo "find ${APP_ROOT} ${FILES_DIR} -maxdepth 0 -uid 0 -type d -exec chown wodby:wodby {} +" > /usr/local/bin/init_volumes; \
echo "find ${APP_ROOT} ${FILES_DIR} -maxdepth 0 -uid 0 -type d -exec chown -f wodby:wodby {} +" > /usr/local/bin/init_volumes; \
chmod +x /usr/local/bin/init_volumes; \
\
{ \
Expand Down

0 comments on commit 44fa997

Please sign in to comment.