Changed classical docker image in the way that we do not need to passthrough env vars explicitly

This commit is contained in:
Jan Böhmer 2025-08-30 21:40:24 +02:00
parent d45cd23c0f
commit 9a8e34cbe3
3 changed files with 23 additions and 32 deletions

View file

@ -119,12 +119,12 @@ realpath_cache_size=4096K
realpath_cache_ttl=600
EOF
# Increase upload limit and enable preloading
# Increase upload limit and enable preloading (disabled for now, as it does not seem to work properly, and require prod env anyway)
COPY <<EOF /etc/php/${PHP_VERSION}/fpm/conf.d/partdb.ini
upload_max_filesize=256M
post_max_size=300M
opcache.preload_user=www-data
opcache.preload=/var/www/html/config/preload.php
;opcache.preload_user=www-data
;opcache.preload=/var/www/html/config/preload.php
log_limit=8096
EOF