Change upload limit default and adapt for 3.6.0
This commit is contained in:
parent
d35ab02835
commit
6b13226a2d
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||||
|
|
|
@ -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 .;
|
||||||
```
|
```
|
Loading…
Reference in a new issue