Skip to content

Commit 1f9e7c4

Browse files
committed
Add note to entrypoint to warn on values solidnerd#430
1 parent 2594188 commit 1f9e7c4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docker-entrypoint.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ check_vars_exist \
3535
DB_PORT \
3636
DB_USERNAME
3737

38+
if [ -n "${FILE_UPLOAD_SIZE_LIMITS}" ]; then
39+
echo "Note: If you're setting FILE_UPLOAD_SIZE_LIMITS to more than 10M, you"
40+
echo "may also need to modify the php.ini file."
41+
echo "See:"
42+
echo "https://github.com/solidnerd/docker-bookstack/issues/423"
43+
fi
44+
45+
3846
echoerr "wait-for-db: waiting for ${DB_HOST_NAME}:${DB_PORT}"
3947

4048
timeout 15 bash <<EOT

0 commit comments

Comments
 (0)