From bcdb8fc2290b06fefc43d2295d17266bfa40581a Mon Sep 17 00:00:00 2001 From: Ben Jones Date: Fri, 12 Jun 2020 09:36:49 +1200 Subject: [PATCH] fix env filename in nextcloud db-backup compose (#104) --- manuscript/recipes/nextcloud.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manuscript/recipes/nextcloud.md b/manuscript/recipes/nextcloud.md index ac96131..a4298c3 100644 --- a/manuscript/recipes/nextcloud.md +++ b/manuscript/recipes/nextcloud.md @@ -105,7 +105,7 @@ services: db-backup: image: mariadb:10 - env_file: /var/data/config/nextcloud/nextcloud.env + env_file: /var/data/config/nextcloud/nextcloud-db-backup.env volumes: - /var/data/nextcloud/database-dump:/dump - /etc/localtime:/etc/localtime:ro @@ -232,4 +232,4 @@ Note that this .htaccess can be overwritten by NextCloud, and you may have to re ## Chef's Notes 📓 1. Since many of my other recipes use PostgreSQL, I'd have preferred to use Postgres over MariaDB, but MariaDB seems to be the [preferred database type](https://github.com/nextcloud/server/issues/5912). -2. I'm [not the first user](https://github.com/nextcloud/docker/issues/528) to stumble across the service discovery bug with reverse proxies. \ No newline at end of file +2. I'm [not the first user](https://github.com/nextcloud/docker/issues/528) to stumble across the service discovery bug with reverse proxies.