Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Refactored the Dockerfiles and related
tooling to leverage Docker multi-stage build
functionality. Also updated base containers
to pick up later releases of Apache HTTP Server,
PHP, Shibboleth SP, and mod_auth_openidc.
1 contributor

Users who have contributed to this file

OpenLDAP slapd base for COmanage Registry

Intended to build an OpenLDAP slapd base image used by other images in this repository as part of a multi-stage build.

Build Arguments

No arguments are required for building the image.

The following arguments may be supplied during the build:

--build-arg OLC_SUFFIX=<directory suffix>
--build-arg OLC_ROOT_DN=<directory root DN>
--build-arg OLC_ROOT_PW=<root DN password, usually hashed>

Building

docker build \
  -t comanage-registry-slapd-base:<tag> .

Building Example

export COMANAGE_REGISTRY_SLAPD_BASE_IMAGE_VERSION=1
TAG="${COMANAGE_REGISTRY_SLAPD_BASE_IMAGE_VERSION}"
docker build \
  -t comanage-registry-slapd-base:$TAG .