Skip to content
Snippets Groups Projects
Unverified Commit e3dc1f3d authored by Josh's avatar Josh Committed by GitHub
Browse files

fix(examples): volumes must match (insecure-postgres-fpm)


Signed-off-by: default avatarJosh <josh.t.richards@gmail.com>
parent 9395077d
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,7 @@ services:
restart: always
volumes:
- nextcloud:/var/www/html:z
# NOTE: The `volumes` config of the `cron` and `app` containers must match
environment:
- POSTGRES_HOST=db
- REDIS_HOST=redis
......@@ -32,6 +33,7 @@ services:
- 127.0.0.1:8080:80
volumes:
- nextcloud:/var/www/html:z,ro
# NOTE: The `volumes` included here should match those of the `app` container (unless you know what you're doing)
depends_on:
- app
......@@ -40,6 +42,7 @@ services:
restart: always
volumes:
- nextcloud:/var/www/html:z
# NOTE: The `volumes` config of the `cron` and `app` containers must match
entrypoint: /cron.sh
depends_on:
- db
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment