fukuops/docker/nextcloud/docker-compose.yml
cătălin 0f239f98cd
Some checks failed
checks / k8s (push) Successful in 47s
checks / pre-commit (push) Successful in 1m53s
checks / tflint (push) Successful in 1m17s
OpenTofu deployments / adguard (push) Successful in 1m24s
OpenTofu deployments / authentik (push) Failing after 3h6m55s
feat: use nextcloud image from repo's own oci registry instead of having the docker host build the image
2024-09-22 17:01:37 +02:00

33 lines
874 B
YAML

---
services:
imaginary:
image: nextcloud/aio-imaginary:latest
cap_add:
- SYS_NICE
volumes:
- type: tmpfs
target: /tmp:exec
environment:
- TZ=Europe/Madrid
networks:
- nextcloud
nextcloud:
image: git.roboces.dev/catalin/fukuops:nextcloud-30.0.0
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
environment:
PHP_MEMORY_LIMIT: ${PHP_MEMORY_LIMIT:-2048M}
NEXTCLOUD_INIT_HTACCESS: ${NEXTCLOUD_INIT_HTACCESS:-1}
ports:
- 8080:80
networks:
- nextcloud
networks:
nextcloud: {}