ldap-server/docker-compose.yml

28 lines
635 B
YAML
Raw Normal View History

2022-12-14 11:19:32 +01:00
version: "2.4"
2022-12-14 22:13:58 +01:00
volumes:
data:
2022-12-14 11:19:32 +01:00
services:
2022-12-14 21:57:05 +01:00
admin:
2023-06-03 01:53:07 +02:00
ports:
- 8080:80
2022-12-14 21:57:05 +01:00
image: registry.audio-lab.org/ldapphpadmin
2023-06-03 01:53:07 +02:00
volumes:
- config.php:/usr/share/phpldapadmin/config/config.php:ro
restart: always
2022-12-14 21:57:05 +01:00
build:
context: phpldapadmin
dockerfile: Dockerfile
2022-12-14 11:19:32 +01:00
ldap:
2022-12-14 21:57:05 +01:00
image: registry.audio-lab.org/ldap
restart: always
2022-12-14 22:13:58 +01:00
build:
2022-12-14 11:19:32 +01:00
context: .
dockerfile: Dockerfile
args:
- LDAP_ADMIN_PASSWORD=${LDAP_ADMIN_PASSWORD}
- LDAP_ORGANISATION=${LDAP_ORGANISATION}
- LDAP_DOMAIN=${LDAP_DOMAIN}
2022-12-14 21:57:05 +01:00
- LDAP_USER=${LDAP_USER}
- LDAP_GROUP=${LDAP_GROUP}