Skip to content

Commit

Permalink
Add note to entrypoint to warn on values
Browse files Browse the repository at this point in the history
See #423
  • Loading branch information
rjhenry committed Aug 11, 2023
1 parent 8ec5c40 commit 8fc0a1d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker-entrypoint.sh
Expand Up @@ -35,6 +35,13 @@ check_vars_exist \
DB_PORT \
DB_USERNAME

if [ -n "${FILE_UPLOAD_SIZE_LIMITS}" ]; then
echo "Note: If you're setting FILE_UPLOAD_SIZE_LIMITS to more than 10M, you"
echo "may also need to modify the php.ini file."
echo "See:"
echo "https://github.com/solidnerd/docker-bookstack/issues/423"
fi

echoerr "wait-for-db: waiting for ${DB_HOST_NAME}:${DB_PORT}"

timeout 15 bash <<EOT
Expand Down

0 comments on commit 8fc0a1d

Please sign in to comment.