Skip to content

Commit 9b245ac

Browse files
fix(examples): volumes must match (with-nginx-proxy-postgres-fpm)
Signed-off-by: Josh <josh.t.richards@gmail.com>
1 parent 24b6769 commit 9b245ac

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ services:
1818
restart: always
1919
volumes:
2020
- nextcloud:/var/www/html:z
21+
# NOTE: The `volumes` config of the `cron` and `app` containers must match
2122
environment:
2223
- POSTGRES_HOST=db
2324
- REDIS_HOST=redis
@@ -33,6 +34,7 @@ services:
3334
restart: always
3435
volumes:
3536
- nextcloud:/var/www/html:z,ro
37+
# NOTE: The `volumes` included here should match those of the `app` container (unless you know what you're doing)
3638
environment:
3739
- VIRTUAL_HOST=
3840
- LETSENCRYPT_HOST=
@@ -48,6 +50,7 @@ services:
4850
restart: always
4951
volumes:
5052
- nextcloud:/var/www/html:z
53+
# NOTE: The `volumes` config of the `cron` and `app` containers must match
5154
entrypoint: /cron.sh
5255
depends_on:
5356
- db

0 commit comments

Comments
 (0)