Skip to content

Commit

Permalink
[bitnami/zookeeper] Release zookeeper-3.8.4-debian-12-r12
Browse files Browse the repository at this point in the history
Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
  • Loading branch information
bitnami-bot committed Aug 24, 2024
1 parent 46eec08 commit ed9c9de
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 6 deletions.
8 changes: 4 additions & 4 deletions bitnami/zookeeper/3.8/debian-12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ ARG TARGETARCH

LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2024-07-25T08:47:42Z" \
org.opencontainers.image.created="2024-08-24T09:48:08Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/zookeeper/README.md" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="3.8.4-debian-12-r11" \
org.opencontainers.image.ref.name="3.8.4-debian-12-r12" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/zookeeper" \
org.opencontainers.image.title="zookeeper" \
org.opencontainers.image.vendor="Broadcom, Inc." \
Expand All @@ -29,8 +29,8 @@ SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
RUN install_packages ca-certificates curl netcat-openbsd procps xmlstarlet zlib1g
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
COMPONENTS=( \
"wait-for-port-1.0.8-2-linux-${OS_ARCH}-debian-12" \
"java-11.0.24-9-0-linux-${OS_ARCH}-debian-12" \
"wait-for-port-1.0.8-3-linux-${OS_ARCH}-debian-12" \
"java-11.0.24-9-1-linux-${OS_ARCH}-debian-12" \
"zookeeper-3.8.4-2-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
Expand Down
44 changes: 44 additions & 0 deletions bitnami/zookeeper/3.8/debian-12/docker-compose-cluster.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Copyright Broadcom, Inc. All Rights Reserved.
# SPDX-License-Identifier: APACHE-2.0

version: '2'

services:
zookeeper:
image: docker.io/bitnami/zookeeper:3.8
ports:
- '2181'
volumes:
- zookeeper_data:/bitnami
environment:
- ZOO_SERVER_ID=1
- ALLOW_ANONYMOUS_LOGIN=yes
- ZOO_SERVERS=zookeeper:2888:3888,zookeeper2:2888:3888,zookeeper3:2888:3888
zookeeper2:
image: docker.io/bitnami/zookeeper:3.8
ports:
- '2181'
volumes:
- zookeeper2_data:/bitnami
environment:
- ZOO_SERVER_ID=2
- ALLOW_ANONYMOUS_LOGIN=yes
- ZOO_SERVERS=zookeeper:2888:3888,zookeeper2:2888:3888,zookeeper3:2888:3888
zookeeper3:
image: docker.io/bitnami/zookeeper:3.8
ports:
- '2181'
volumes:
- zookeeper3_data:/bitnami
environment:
- ZOO_SERVER_ID=3
- ALLOW_ANONYMOUS_LOGIN=yes
- ZOO_SERVERS=zookeeper:2888:3888,zookeeper2:2888:3888,zookeeper3:2888:3888

volumes:
zookeeper_data:
driver: local
zookeeper2_data:
driver: local
zookeeper3_data:
driver: local
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"arch": "amd64",
"distro": "debian-12",
"type": "NAMI",
"version": "11.0.24-9-0"
"version": "11.0.24-9-1"
},
"wait-for-port": {
"arch": "amd64",
"distro": "debian-12",
"type": "NAMI",
"version": "1.0.8-2"
"version": "1.0.8-3"
},
"zookeeper": {
"arch": "amd64",
Expand Down

0 comments on commit ed9c9de

Please sign in to comment.