14 lines
327 B
YAML
14 lines
327 B
YAML
version: '3'
|
|
|
|
services:
|
|
slapd:
|
|
build:
|
|
context: ./slapd
|
|
#command: tail -f /dev/null
|
|
image: slapd:latest
|
|
ports:
|
|
- ${SLAPD_EXTERNAL_IP}:${SLAPD_EXTERNAL_PORT}:389
|
|
volumes:
|
|
- ${SLAPD_CONFIG_FILE_PATH}:/etc/openldap/slapd.conf:ro
|
|
- ${SLAPD_DATA_PATH}:/var/lib/openldap/openldap-data:rw
|