authentik/compose.outposts.ldap.yml
3wc c90b3c6881
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
chore: publish 7.1.0+2025.2.4 release
2025-04-09 13:53:38 +01:00

23 lines
612 B
YAML

version: "3.8"
services:
authentik_ldap:
image: ghcr.io/goauthentik/ldap:2025.2.4
# Optionally specify which networks the container should be
# might be needed to reach the core authentik server
networks:
- internal
- proxy
ports:
- 389:3389
- 636:6636
secrets:
- ldap_token
environment:
- AUTHENTIK_HOST=https://${DOMAIN}
- AUTHENTIK_INSECURE=true
- AUTHENTIK_TOKEN=file:///run/secrets/ldap_token
secrets:
ldap_token:
external: true
name: ${STACK_NAME}_ldap_token_${SECRET_LDAP_TOKEN_VERSION}