2022-05-03 11:04:04 +02:00
|
|
|
# SPDX-License-Identifier: MIT
|
2022-11-23 10:32:05 +01:00
|
|
|
#!BuildTag: opensuse/389-ds:%%389ds_version%%
|
|
|
|
#!BuildTag: opensuse/389-ds:%%389ds_version%%-%RELEASE%
|
2022-12-21 15:24:19 +01:00
|
|
|
#!BuildTag: opensuse/389-ds:latest
|
2022-11-23 10:32:05 +01:00
|
|
|
|
2022-05-03 11:04:04 +02:00
|
|
|
FROM opensuse/tumbleweed:latest
|
|
|
|
|
2022-11-23 10:32:05 +01:00
|
|
|
MAINTAINER william.brown@suse.com
|
2022-05-03 11:04:04 +02:00
|
|
|
|
|
|
|
# Define labels according to https://en.opensuse.org/Building_derived_containers
|
2022-07-18 16:07:36 +02:00
|
|
|
# labelprefix=org.opensuse.application.389-ds
|
|
|
|
LABEL org.opencontainers.image.title="openSUSE Tumbleweed 389 Directory Server Container Image"
|
|
|
|
LABEL org.opencontainers.image.description="389 Directory Server based on the openSUSE Tumbleweed Base Container Image."
|
2022-11-23 10:32:05 +01:00
|
|
|
LABEL org.opencontainers.image.version="%%389ds_version%%"
|
2022-07-18 16:07:36 +02:00
|
|
|
LABEL org.opencontainers.image.url="https://www.opensuse.org"
|
2022-05-03 11:04:04 +02:00
|
|
|
LABEL org.opencontainers.image.created="%BUILDTIME%"
|
2022-07-18 16:07:36 +02:00
|
|
|
LABEL org.opencontainers.image.vendor="openSUSE Project"
|
2023-03-03 08:50:25 +01:00
|
|
|
LABEL org.opencontainers.image.source="%SOURCEURL%"
|
2022-11-23 10:32:05 +01:00
|
|
|
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/389-ds:%%389ds_version%%-%RELEASE%"
|
2022-05-03 11:04:04 +02:00
|
|
|
LABEL org.openbuildservice.disturl="%DISTURL%"
|
2022-07-18 16:07:36 +02:00
|
|
|
|
|
|
|
LABEL com.suse.release-stage="released"
|
2022-05-03 11:04:04 +02:00
|
|
|
# endlabelprefix
|
|
|
|
|
2022-11-23 10:32:05 +01:00
|
|
|
RUN set -euo pipefail; zypper -n in --no-recommends 389-ds timezone openssl nss_synth; zypper -n clean; rm -rf /var/log/*
|
2022-05-03 11:04:04 +02:00
|
|
|
CMD ["/usr/lib/dirsrv/dscontainer", "-r"]
|
2022-11-23 10:32:05 +01:00
|
|
|
VOLUME /data
|
2022-05-03 11:04:04 +02:00
|
|
|
EXPOSE 3389 3636
|
|
|
|
|
2022-11-23 10:32:05 +01:00
|
|
|
COPY nsswitch.conf /etc/nsswitch.conf
|
|
|
|
|
2022-05-03 11:04:04 +02:00
|
|
|
RUN set -euo pipefail; mkdir -p /data/config; \
|
|
|
|
mkdir -p /data/ssca; \
|
|
|
|
mkdir -p /data/run; \
|
|
|
|
mkdir -p /var/run/dirsrv; \
|
|
|
|
ln -s /data/config /etc/dirsrv/slapd-localhost; \
|
|
|
|
ln -s /data/ssca /etc/dirsrv/ssca; \
|
|
|
|
ln -s /data/run /var/run/dirsrv
|
|
|
|
|
|
|
|
HEALTHCHECK --start-period=5m --timeout=5s --interval=5s --retries=2 \
|
|
|
|
CMD /usr/lib/dirsrv/dscontainer -H
|