ff
This commit is contained in:
parent
e6a90a129b
commit
66cba73f45
1 changed files with 12 additions and 12 deletions
|
@ -22,21 +22,21 @@ services:
|
|||
UID: 1000
|
||||
GID: 1000
|
||||
LLDAP_HTTP_PORT: 17170
|
||||
LLDAP_HTTP_URL: http://docker10.grote.lan:17170
|
||||
LLDAP_HTTP_URL: "http://docker10.grote.lan:17170"
|
||||
LLDAP_KEY_SEED: "{{ lookup('keepass', 'lldap_key_seed', 'password') }}"
|
||||
LLDAP_VERBOSE: true
|
||||
LLDAP_JWT_SECRET: "{{ lookup('keepass', 'lldap_jwt_secret', 'password') }}"
|
||||
LLDAP_LDAP_BASE_DN: dc=grote,dc=lan
|
||||
LLDAP_USER_DN: admin
|
||||
LLDAP_LDAP_BASE_DN: "dc=grote,dc=lan"
|
||||
LLDAP_USER_DN: "admin"
|
||||
LLDAP_LDAP_USER_PASS: "{{ lookup('keepass', 'lldap_ldap_user_pass', 'password') }}"
|
||||
LLDAP_DATABASE_URL: "mysql://lldap-db-user:{{ lookup('keepass', 'lldap_mysql_password', 'password') }}@lldap-db/lldap"
|
||||
LLDAP_SMTP_OPTIONS__ENABLE_PASSWORD_reset: true
|
||||
LLDAP_SMTP_OPTIONS__FROM: "LLDAP Admin <info@mgrote.net>"
|
||||
LLDAP_SMTP_OPTIONS__REPLY_TO: "Do not reply <info@mgrote.net>"
|
||||
LLDAP_SMTP_OPTIONS__SERVER: mail-relay
|
||||
LLDAP_SMTP_OPTIONS__PORT: 25
|
||||
LLDAP_SMTP_OPTIONS__SMTP_ENCRYPTION: NONE
|
||||
LLDAP_SMTP_OPTIONS__USER: info@mgrote.net
|
||||
LLDAP_SMTP_OPTIONS__SERVER: "mail-relay"
|
||||
LLDAP_SMTP_OPTIONS__PORT: "25"
|
||||
LLDAP_SMTP_OPTIONS__SMTP_ENCRYPTION: "NONE"
|
||||
LLDAP_SMTP_OPTIONS__USER: "info@mgrote.net"
|
||||
|
||||
######## DB ########
|
||||
lldap-db:
|
||||
|
@ -48,11 +48,11 @@ services:
|
|||
- /etc/timezone:/etc/timezone:ro
|
||||
- db:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD="{{ lookup('keepass', 'lldap_mysql_root_password', 'password') }}"
|
||||
- MYSQL_PASSWORD="{{ lookup('keepass', 'lldap_mysql_password', 'password') }}"
|
||||
- MYSQL_DATABASE=lldap
|
||||
- MYSQL_USER=lldap-db-user
|
||||
- MYSQL_INITDB_SKIP_TZINFO=1
|
||||
MYSQL_ROOT_PASSWORD: "{{ lookup('keepass', 'lldap_mysql_root_password', 'password') }}"
|
||||
MYSQL_PASSWORD: "{{ lookup('keepass', 'lldap_mysql_password', 'password') }}"
|
||||
MYSQL_DATABASE: "lldap"
|
||||
MYSQL_USER: "lldap-db-user"
|
||||
MYSQL_INITDB_SKIP_TZINFO: "1"
|
||||
networks:
|
||||
- intern
|
||||
|
||||
|
|
Loading…
Reference in a new issue