Change upload limit default and adapt for 3.6.0

This commit is contained in:
Varakh 2021-04-03 12:05:52 +02:00
parent d35ab02835
commit 6b13226a2d
2 changed files with 5 additions and 5 deletions

View file

@ -9,7 +9,7 @@ ENV MIGRATE true
# php.ini # php.ini
ENV PHP_MEMORY_LIMIT 512M ENV PHP_MEMORY_LIMIT 512M
ENV MAX_UPLOAD 1024M ENV MAX_UPLOAD 1024M
ENV PHP_MAX_FILE_UPLOAD 200 ENV PHP_MAX_FILE_UPLOAD 100
ENV PHP_MAX_POST 1024M ENV PHP_MAX_POST 1024M
# database.php # database.php

View file

@ -135,8 +135,8 @@ Steps:
Example: Example:
``` ```
export FILEBIN_VERSION=3.5.0 export FILEBIN_VERSION=3.6.0;
mkdir -p build mkdir -p build;
git clone --branch ${FILEBIN_VERSION} https://github.com/Bluewind/filebin --depth=1 build/ git clone --branch ${FILEBIN_VERSION} https://github.com/Bluewind/filebin --depth=1 build/;
sudo docker build --no-cache -t varakh/filebin:${FILEBIN_VERSION} -t varakh/filebin:latest . sudo docker build --no-cache -t varakh/filebin:${FILEBIN_VERSION} -t varakh/filebin:latest .;
``` ```