File tree Expand file tree Collapse file tree
.examples/docker-compose/with-nginx-proxy/postgres/fpm Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments