add ldap back to docker compose
This commit is contained in:
parent
3876f043e8
commit
ae802612a8
1 changed files with 10 additions and 2 deletions
|
@ -1,6 +1,4 @@
|
||||||
---
|
---
|
||||||
version: "3.4"
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
postgresql:
|
postgresql:
|
||||||
image: docker.io/library/postgres:16-alpine
|
image: docker.io/library/postgres:16-alpine
|
||||||
|
@ -80,6 +78,16 @@ services:
|
||||||
- postgresql
|
- postgresql
|
||||||
- redis
|
- redis
|
||||||
|
|
||||||
|
authentik_ldap:
|
||||||
|
image: ghcr.io/goauthentik/ldap:2024.10.0
|
||||||
|
ports:
|
||||||
|
- 389:3389
|
||||||
|
- 636:6636
|
||||||
|
environment:
|
||||||
|
AUTHENTIK_HOST: ${AUTH_HOST}
|
||||||
|
AUTHENTIK_INSECURE: "true"
|
||||||
|
AUTHENTIK_TOKEN: ${AUTH_TOKEN}
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
database:
|
database:
|
||||||
driver: local
|
driver: local
|
||||||
|
|
Loading…
Reference in a new issue