Skip to content

Commit

Permalink
2.4.58-debian-10-r22 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bitnami Bot committed Apr 7, 2021
1 parent 8f83ee4 commit d271de2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 2/debian-10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami
COPY rootfs /
RUN /opt/bitnami/scripts/openldap/postunpack.sh
ENV BITNAMI_APP_NAME="openldap" \
BITNAMI_IMAGE_VERSION="2.4.58-debian-10-r21" \
BITNAMI_IMAGE_VERSION="2.4.58-debian-10-r22" \
PATH="/opt/bitnami/openldap/bin:/opt/bitnami/openldap/sbin:/opt/bitnami/common/bin:$PATH"

EXPOSE 1389 1636
Expand Down
2 changes: 1 addition & 1 deletion 2/debian-10/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2'

services:
openldap:
image: docker.io/bitnami/openldap:2-debian-10
image: docker.io/bitnami/openldap:2
ports:
- '1389:1389'
- '1636:1636'
Expand Down
2 changes: 1 addition & 1 deletion 2/debian-10/prebuildfs/opt/bitnami/scripts/liblog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,5 @@ indent() {
for ((i = 0; i < num; i++)); do
indent_unit="${indent_unit}${char}"
done
echo "$string" | sed "s/^/${indent_unit}/"
echo "${string//^/${indent_unit}}"
}
4 changes: 2 additions & 2 deletions 2/debian-10/prebuildfs/opt/bitnami/scripts/libversion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Functions
########################
# Gets semantic version
# Gets semantic version
# Arguments:
# $1 - version: string to extract major.minor.patch
# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch
Expand Down Expand Up @@ -38,7 +38,7 @@ get_sematic_version () {
done

local number_regex='^[0-9]+$'
if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then
if [[ "$section" =~ $number_regex ]] && (( section > 0 )) && (( section <= 3 )); then
echo "${version_sections[$section]}"
return
else
Expand Down
2 changes: 2 additions & 0 deletions 2/debian-10/rootfs/opt/bitnami/scripts/openldap/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

# shellcheck disable=SC1091

set -o errexit
set -o nounset
set -o pipefail
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Non-root container images add an extra layer of security and are generally recom
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).


* [`2`, `2-debian-10`, `2.4.58`, `2.4.58-debian-10-r21`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-openldap/blob/2.4.58-debian-10-r21/2/debian-10/Dockerfile)
* [`2`, `2-debian-10`, `2.4.58`, `2.4.58-debian-10-r22`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-openldap/blob/2.4.58-debian-10-r22/2/debian-10/Dockerfile)

Subscribe to project updates by watching the [bitnami/openldap GitHub repo](https://github.com/bitnami/bitnami-docker-openldap).

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2'

services:
openldap:
image: docker.io/bitnami/openldap:2-debian-10
image: docker.io/bitnami/openldap:2
ports:
- '1389:1389'
- '1636:1636'
Expand Down

0 comments on commit d271de2

Please sign in to comment.