Added container names
This commit is contained in:
parent
703b0ae0ac
commit
971177eca9
1 changed files with 3 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
|||
services:
|
||||
postgresql:
|
||||
container_name: authentik_postgresql
|
||||
environment:
|
||||
POSTGRES_DB: ${PG_DB:-authentik}
|
||||
POSTGRES_PASSWORD: ${PG_PASS:?database password required}
|
||||
|
|
@ -17,6 +18,7 @@ services:
|
|||
volumes:
|
||||
- database:/var/lib/postgresql/data
|
||||
server:
|
||||
container_name: authentik_server
|
||||
command: server
|
||||
depends_on:
|
||||
postgresql:
|
||||
|
|
@ -34,6 +36,7 @@ services:
|
|||
- ./custom-templates:/templates
|
||||
worker:
|
||||
command: worker
|
||||
container_name: authentik_worker
|
||||
depends_on:
|
||||
postgresql:
|
||||
condition: service_healthy
|
||||
|
|
|
|||
Loading…
Reference in a new issue