29 lines
738 B
YAML
29 lines
738 B
YAML
services:
|
|
ldap:
|
|
image: osixia/openldap:1.5.0
|
|
container_name: rustpad-test-ldap
|
|
restart: unless-stopped
|
|
environment:
|
|
LDAP_ORGANISATION: RustPad Test
|
|
LDAP_DOMAIN: example.org
|
|
LDAP_ADMIN_PASSWORD: admin
|
|
LDAP_CONFIG_PASSWORD: config
|
|
LDAP_TLS: "false"
|
|
ports:
|
|
- "10.87.2.6:389:389"
|
|
volumes:
|
|
- ./bootstrap:/container/service/slapd/assets/config/bootstrap/ldif/custom:ro
|
|
command: --copy-service
|
|
|
|
ldap-admin:
|
|
image: osixia/phpldapadmin:0.9.0
|
|
container_name: rustpad-test-ldap-admin
|
|
restart: unless-stopped
|
|
environment:
|
|
PHPLDAPADMIN_LDAP_HOSTS: ldap
|
|
PHPLDAPADMIN_HTTPS: "false"
|
|
ports:
|
|
- "10.87.2.6:8088:80"
|
|
depends_on:
|
|
- ldap
|