mirror of
https://github.com/MetaProvide/nextcloud-swarm-plugin.git
synced 2025-01-28 21:54:31 +00:00
196d22f7d0
* Beta version * Corrections made to PR. Added basic functionalilty for topupBatch so that is ready for some testing. Currently missing feedback message to map to front-end * Removed CSP (content security policy) Listener * Added Client side validation on form data input. * Update to version 26 of NextCloud --------- Co-authored-by: Ron <> Co-authored-by: Ron <rontrevor@hotmail.com>
17 lines
503 B
Docker
17 lines
503 B
Docker
FROM nextcloud:25
|
|
|
|
RUN pecl install xdebug; \
|
|
docker-php-ext-enable xdebug; \
|
|
mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"; \
|
|
{ \
|
|
echo "xdebug.mode = debug"; \
|
|
echo "xdebug.start_with_request = yes"; \
|
|
echo "xdebug.client_host=host.docker.internal"; \
|
|
echo "memory_limit=1024M"; \
|
|
echo "upload_max_filesize=16G"; \
|
|
echo "post_max_size=16G"; \
|
|
echo "max_execution_time=3600"; \
|
|
echo "max_input_time=3600"; \
|
|
} > /usr/local/etc/php/conf.d/nextcloud.ini;
|
|
|
|
ENV NEXTCLOUD_UPDATE=1
|