0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-04 20:06:09 +02:00
nextcloud-docker/.examples/docker-compose/insecure/postgres/apache/docker-compose.yml
Olliver Schinagl 62ef4e961b
examples: Have cron container depend on the app container
The cron container requires the files created by the app container, to
start its cron tasks. There is a potential race condition here, where
cron starts to run before the app container is even up, before the app
container has populated `/var/www/html`. This is undesired and easily
solved by making sure cron depends on the app container.

Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
2023-05-29 10:28:11 +02:00

45 lines
699 B
YAML

version: '3'
services:
db:
image: postgres:alpine
restart: always
volumes:
- db:/var/lib/postgresql/data:Z
env_file:
- db.env
redis:
image: redis:alpine
restart: always
app:
image: nextcloud:apache
restart: always
ports:
- 127.0.0.1:8080:80
volumes:
- nextcloud:/var/www/html:z
environment:
- POSTGRES_HOST=db
- REDIS_HOST=redis
env_file:
- db.env
depends_on:
- db
- redis
cron:
image: nextcloud:apache
restart: always
volumes:
- nextcloud:/var/www/html:z
entrypoint: /cron.sh
depends_on:
- app
- db
- redis
volumes:
db:
nextcloud: