Add collabora and redis for nextcloud

This commit is contained in:
Peter Smit
2025-03-30 09:24:53 +02:00
parent b32bc6d9e1
commit c441871800

View File

@@ -30,3 +30,21 @@ services:
- ${NEXTCLOUD_DATA_DIR}:/var/www/html - ${NEXTCLOUD_DATA_DIR}:/var/www/html
entrypoint: /cron.sh entrypoint: /cron.sh
restart: unless-stopped restart: unless-stopped
redis:
container_name: nextcloud-redis
image: redis:7
restart: always
collabora:
container_name: nextcloud-collabora
image: collabora/code:24.04.13.2.1
cap_add:
- MKNOD
environment:
- domain=${COLLABORA_DOMAIN}
- username=${COLLABORA_USER}
- password=${COLLABORA_PASSWORD}
ports:
- "9980:9980"
restart: always
volumes:
- "/etc/localtime:/etc/localtime:ro"