forked from pool/389-ds-container
Compare commits
21 Commits
Author | SHA256 | Date | |
---|---|---|---|
00ea853c04 | |||
0dd6c32df3 | |||
b59ba02cf1 | |||
d90ad3c431 | |||
1c4aa28653 | |||
ca7820224f | |||
db9ab227b1 | |||
edfe61548f | |||
48f894bfa8 | |||
12c71070fc | |||
25b1a27fc2 | |||
a1b16acf7a | |||
fc7f10f806 | |||
1f5e4b18a6 | |||
4a4eee9023 | |||
f364eece7e | |||
463652ff01 | |||
0b3d6a8c61 | |||
059e3c1ff7 | |||
24675c6ab9 | |||
92757c4eef |
@@ -1,3 +1,48 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 19 11:33:09 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
|
||||||
|
|
||||||
|
- fix image references in README
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 31 13:55:15 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
|
||||||
|
|
||||||
|
- set exclusivearch to exclude 32bit platforms from building
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 1 14:13:48 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
|
||||||
|
|
||||||
|
- update copyright year
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Dec 3 13:26:37 UTC 2024 - SUSE Update Bot <bci-internal@suse.de>
|
||||||
|
|
||||||
|
- Change attribute order in _service
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 30 18:28:27 UTC 2024 - SUSE Update Bot <bci-internal@suse.de>
|
||||||
|
|
||||||
|
- be explicit in protocol for expose statement
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 11 15:12:52 UTC 2024 - SUSE Update Bot <bci-internal@suse.de>
|
||||||
|
|
||||||
|
- make the tag with -%RELEASE% the first tag listed
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 25 17:36:16 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- rerender installation step in multiple lines, allow uninstalling optional packages
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 25 17:12:11 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- improved log cleaning
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 12 10:37:22 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- set useobsrepositories explicitly
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 14 12:30:32 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
Wed Aug 14 12:30:32 UTC 2024 - Dirk Mueller <dmueller@suse.com>
|
||||||
|
|
||||||
|
15
Dockerfile
15
Dockerfile
@@ -1,6 +1,6 @@
|
|||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
|
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -13,14 +13,19 @@
|
|||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
# You can contact the BCI team via https://github.com/SUSE/bci/discussions
|
# You can contact the BCI team via https://github.com/SUSE/bci/discussions
|
||||||
|
|
||||||
|
#!UseOBSRepositories
|
||||||
#!BuildTag: opensuse/389-ds:%%389ds_version%%
|
#!ExclusiveArch: aarch64 ppc64le s390x x86_64
|
||||||
#!BuildTag: opensuse/389-ds:%%389ds_version%%-%RELEASE%
|
#!BuildTag: opensuse/389-ds:%%389ds_version%%-%RELEASE%
|
||||||
|
#!BuildTag: opensuse/389-ds:%%389ds_version%%
|
||||||
|
#!BuildTag: opensuse/389-ds:3.1
|
||||||
#!BuildTag: opensuse/389-ds:latest
|
#!BuildTag: opensuse/389-ds:latest
|
||||||
|
|
||||||
FROM opensuse/tumbleweed:latest
|
FROM opensuse/tumbleweed:latest
|
||||||
|
|
||||||
RUN set -euo pipefail; zypper -n in --no-recommends 389-ds timezone openssl nss_synth; zypper -n clean; rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2}
|
RUN set -euo pipefail; \
|
||||||
|
zypper -n install --no-recommends 389-ds timezone openssl nss_synth; \
|
||||||
|
zypper -n clean; \
|
||||||
|
rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}
|
||||||
|
|
||||||
# Define labels according to https://en.opensuse.org/Building_derived_containers
|
# Define labels according to https://en.opensuse.org/Building_derived_containers
|
||||||
# labelprefix=org.opensuse.application.389-ds
|
# labelprefix=org.opensuse.application.389-ds
|
||||||
@@ -40,7 +45,7 @@ LABEL org.opensuse.release-stage="released"
|
|||||||
# endlabelprefix
|
# endlabelprefix
|
||||||
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/389-ds-container/README.md"
|
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/SUSE/BCI-dockerfile-generator/Tumbleweed/389-ds-container/README.md"
|
||||||
CMD ["/usr/lib/dirsrv/dscontainer", "-r"]
|
CMD ["/usr/lib/dirsrv/dscontainer", "-r"]
|
||||||
EXPOSE 3389 3636
|
EXPOSE 3389/tcp 3636/tcp
|
||||||
|
|
||||||
COPY nsswitch.conf /etc/nsswitch.conf
|
COPY nsswitch.conf /etc/nsswitch.conf
|
||||||
|
|
||||||
|
@@ -13,7 +13,7 @@ is also included a pre-configured Name Service Switch (NSS) configuration
|
|||||||
file (`/etc/nsswitch.conf`).
|
file (`/etc/nsswitch.conf`).
|
||||||
|
|
||||||
```ShellSession
|
```ShellSession
|
||||||
$ podman run -it --rm -p 3389:3389 -p 3636:3636 registry.opensuse.org/opensuse/389-ds:%%389ds_version%%
|
$ podman run -it --rm -p 3389:3389 -p 3636:3636 registry.opensuse.org/opensuse/389-ds:3.1
|
||||||
```
|
```
|
||||||
|
|
||||||
## Volumes
|
## Volumes
|
||||||
@@ -26,7 +26,7 @@ To mount a host directory as a volume for your database, run the following
|
|||||||
command:
|
command:
|
||||||
|
|
||||||
```ShellSession
|
```ShellSession
|
||||||
$ podman run -it --rm -v /my/own/datadir:/data:Z -p 3389:3389 -p 3636:3636 registry.opensuse.org/opensuse/389-ds:%%389ds_version%%
|
$ podman run -it --rm -v /my/own/datadir:/data:Z -p 3389:3389 -p 3636:3636 registry.opensuse.org/opensuse/389-ds:3.1
|
||||||
```
|
```
|
||||||
|
|
||||||
## Certificates
|
## Certificates
|
||||||
|
4
_service
4
_service
@@ -1,10 +1,10 @@
|
|||||||
<services>
|
<services>
|
||||||
<service mode="buildtime" name="docker_label_helper"/>
|
<service mode="buildtime" name="docker_label_helper"/>
|
||||||
<service mode="buildtime" name="kiwi_metainfo_helper"/>
|
<service mode="buildtime" name="kiwi_metainfo_helper"/>
|
||||||
<service name="replace_using_package_version" mode="buildtime">
|
<service mode="buildtime" name="replace_using_package_version">
|
||||||
<param name="file">Dockerfile</param>
|
<param name="file">Dockerfile</param>
|
||||||
<param name="regex">%%389ds_version%%</param>
|
<param name="regex">%%389ds_version%%</param>
|
||||||
<param name="package">389-ds</param>
|
<param name="package">389-ds</param>
|
||||||
<param name="parse-version">minor</param>
|
<param name="parse-version">patch</param>
|
||||||
</service>
|
</service>
|
||||||
</services>
|
</services>
|
Reference in New Issue
Block a user