Skip to content

Commit 7e188da

Browse files
fix(examples): volumes must match (with-nginx-proxy-mariadb-fpm)
Signed-off-by: Josh <josh.t.richards@gmail.com>
1 parent 60f205a commit 7e188da

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

  • .examples/docker-compose/with-nginx-proxy/mariadb/fpm

.examples/docker-compose/with-nginx-proxy/mariadb/fpm/compose.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ services:
2121
restart: always
2222
volumes:
2323
- nextcloud:/var/www/html:z
24+
# NOTE: The `volumes` config of the `cron` and `app` containers must match
2425
environment:
2526
- MYSQL_HOST=db
2627
- REDIS_HOST=redis
@@ -36,6 +37,7 @@ services:
3637
restart: always
3738
volumes:
3839
- nextcloud:/var/www/html:z,ro
40+
# NOTE: The `volumes` included here should match those of the `app` container (unless you know what you're doing)
3941
environment:
4042
- VIRTUAL_HOST=
4143
- LETSENCRYPT_HOST=
@@ -51,6 +53,7 @@ services:
5153
restart: always
5254
volumes:
5355
- nextcloud:/var/www/html:z
56+
# NOTE: The `volumes` config of the `cron` and `app` containers must match
5457
entrypoint: /cron.sh
5558
depends_on:
5659
- db

0 commit comments

Comments
 (0)