fukuops/docker/nextcloud/docker-compose.yml
cătălin ae76208c97
Some checks failed
checks / k8s (push) Successful in 13s
checks / tflint (push) Successful in 14s
checks / pre-commit (push) Successful in 1m22s
Kaniko deployments / nextcloud (push) Failing after 3m36s
OpenTofu deployments / adguard (push) Successful in 31s
OpenTofu deployments / authentik (push) Failing after 1h30m27s
feat: update nextcloud compose to v30.0.4
2024-12-13 16:26:52 +01:00

40 lines
1 KiB
YAML

---
services:
imaginary:
image: nextcloud/aio-imaginary:latest
cap_add:
- SYS_NICE
volumes:
- type: tmpfs
target: /tmp:exec
environment:
- TZ=Europe/Madrid
restart: unless-stopped
networks:
- nextcloud
nextcloud:
image: git.roboces.dev/catalin/fukuops:nextcloud-30.0.4
volumes:
- /mnt/nas1/legacy-storage/cloud/cloud/data:/var/www/html/data
- /mnt/nas1/legacy-storage/cloud/cloud/config:/var/www/html/config
- /mnt/nas1/legacy-storage/cloud/cloud/custom_apps:/var/www/html/custom_apps
- /mnt/nas1/legacy-storage/cloud/cloud/apps:/var/www/html/apps
- type: tmpfs
target: /tmp:exec
- supervisorlog:/var/log/supervisor:z
- supervisorpid:/var/run/supervisord/:z
environment:
PHP_MEMORY_LIMIT: ${PHP_MEMORY_LIMIT:-2048M}
NEXTCLOUD_INIT_HTACCESS: ${NEXTCLOUD_INIT_HTACCESS:-1}
restart: unless-stopped
ports:
- 8080:80
networks:
- nextcloud
networks:
nextcloud: {}
volumes:
supervisorlog: {}
supervisorpid: {}