Skip to content

Commit

Permalink
Merge pull request #430 from solidnerd/rjh_423
Browse files Browse the repository at this point in the history
Add note to entrypoint to warn on values
  • Loading branch information
rjhenry committed Sep 18, 2023
2 parents 7999fb2 + 8fc0a1d commit 72b54a5
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 72b54a5

Please sign in to comment.