feat: add supervisor volumes to nextcloud

This commit is contained in:
cătălin 2024-11-11 11:03:47 +01:00
commit a635c718cd
No known key found for this signature in database

View file

@ -22,6 +22,8 @@ services:
- /mnt/nas1/legacy-storage/cloud/cloud/apps:/var/www/html/apps - /mnt/nas1/legacy-storage/cloud/cloud/apps:/var/www/html/apps
- type: tmpfs - type: tmpfs
target: /tmp:exec target: /tmp:exec
- supervisorlog:/var/log/supervisor:z
- supervisorpid:/var/run/supervisord/:z
environment: environment:
PHP_MEMORY_LIMIT: ${PHP_MEMORY_LIMIT:-2048M} PHP_MEMORY_LIMIT: ${PHP_MEMORY_LIMIT:-2048M}
NEXTCLOUD_INIT_HTACCESS: ${NEXTCLOUD_INIT_HTACCESS:-1} NEXTCLOUD_INIT_HTACCESS: ${NEXTCLOUD_INIT_HTACCESS:-1}
@ -33,3 +35,6 @@ services:
networks: networks:
nextcloud: {} nextcloud: {}
volumes:
supervisorlog: {}
supervisorpid: {}