lifecycle: Add depends_on for worker and server container (#5634)

Add depend_on for worker and server container
This commit is contained in:
Bojan Bogojevic 2023-05-29 14:14:09 +02:00 committed by GitHub
parent 8dbfafe612
commit 4a41811465
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,9 @@ services:
ports:
- "${COMPOSE_PORT_HTTP:-9000}:9000"
- "${COMPOSE_PORT_HTTPS:-9443}:9443"
depends_on:
- postgresql
- redis
worker:
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2023.5.2}
restart: unless-stopped
@ -73,6 +76,9 @@ services:
- ./custom-templates:/templates
env_file:
- .env
depends_on:
- postgresql
- redis
volumes:
database: