mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-17 16:29:55 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
11 lines
293 B
Docker
11 lines
293 B
Docker
# Modified version of lldap/lldap that seeds lldap with test data
|
||
FROM lldap/lldap:2025-12-24
|
||
|
||
WORKDIR /app
|
||
|
||
COPY seed-lldap.sh .
|
||
RUN chmod +x ./seed-lldap.sh
|
||
RUN cp lldap_set_password /bin
|
||
|
||
ENTRYPOINT /docker-entrypoint.sh run --config-file /data/lldap_config.toml & ./seed-lldap.sh && wait
|