feat(Nextcloud): Split redis & postgres configuration

This commit is contained in:
2023-10-03 22:21:58 +02:00
parent 6441551318
commit a26e291396
7 changed files with 42 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
---
version: "3.8"
services:
nextcloud-fpm:
depends_on:
- redis
environment:
&redis-configuration
REDIS_HOST: ${REDIS_CONTAINER_NAME:-redis} # Default name is same as ../redis/docker-compose.yml:4
nextcloud-cron:
environment:
<<: *redis-configuration