-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bitnami/zookeeper] Release zookeeper-3.8.4-debian-12-r12
Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
- Loading branch information
1 parent
46eec08
commit ed9c9de
Showing
3 changed files
with
50 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
bitnami/zookeeper/3.8/debian-12/docker-compose-cluster.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters