fukuops/docker/nextcloud/docker-compose.yml
cătălin bd929e6211
Some checks failed
checks / pre-commit (push) Successful in 43s
checks / k8s (push) Successful in 24s
checks / tflint (push) Successful in 23s
OpenTofu deployments / authentik (push) Successful in 36s
OpenTofu deployments / adguard (push) Failing after 53s
feat: add vaultwarden dockerfiles
2024-08-06 19:48:45 +02:00

33 lines
827 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:
build: .
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: {}