From f7846ca34a4968bdbad09dac4407d903dd9c5a52dd1664b7b128058946e85231 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Wed, 5 Apr 2023 16:00:06 +0000 Subject: [PATCH] [info=2eb4ed18c1282b0fcc4e38e35682ccf0] OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/389-ds-container?expand=0&rev=39 --- 389-ds-container.changes | 5 +++++ Dockerfile | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/389-ds-container.changes b/389-ds-container.changes index 31b8151..01f7a2d 100644 --- a/389-ds-container.changes +++ b/389-ds-container.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Mar 30 15:12:51 UTC 2023 - Dirk Mueller + +- put VOLUME statements last + ------------------------------------------------------------------- Fri Mar 3 07:24:36 UTC 2023 - Dan Čermák diff --git a/Dockerfile b/Dockerfile index e1b9e9a..b75d183 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,6 @@ LABEL com.suse.release-stage="released" RUN set -euo pipefail; zypper -n in --no-recommends 389-ds timezone openssl nss_synth; zypper -n clean; rm -rf /var/log/* CMD ["/usr/lib/dirsrv/dscontainer", "-r"] -VOLUME /data EXPOSE 3389 3636 COPY nsswitch.conf /etc/nsswitch.conf @@ -39,3 +38,5 @@ RUN set -euo pipefail; mkdir -p /data/config; \ HEALTHCHECK --start-period=5m --timeout=5s --interval=5s --retries=2 \ CMD /usr/lib/dirsrv/dscontainer -H + +VOLUME /data