Return to Image List

zookeeper

Zookeeper

Apache ZooKeeper is a software project of the Apache Software Foundation, providing an open source distributed configuration service, synchronization service, and naming registry for large distributed systems. ZooKeeper was a sub-project of Hadoop but is now a top-level project in its own right.

See zookeeper.apache.org for more information

This image is built by IBM to run on the IBM Z architecture and is not affiliated with any other community that provides a version of this image.


License

View license information here

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.


Versions

Use the pull string below for the version of this image you require.
3.8 docker pull icr.io/ibmz/zookeeper@sha256:b6bffb90274df4798fd7ee534000c3293fb5d2e9992bd39f057bbf09866ca417 Vulnerability Report01-02-2025
3.8.0-temurin docker pull icr.io/ibmz/zookeeper@sha256:a5c20f2dace22d5d6f2d2c286dc1a24b0d9071464d84ced978a1e7514c60bc1a Vulnerability Report01-02-2025
3.7.0 docker pull icr.io/ibmz/zookeeper@sha256:8ee98a5d3f8ff65e11b0ed0204d8c9c7187c049a9c2f29aa164343c3d24dd483 Vulnerability Report01-02-2025
3.8.1-temurin docker pull icr.io/ibmz/zookeeper@sha256:4747d19e267abaa5f31d38c01f281ca63c6631aa04a4b2f12f9595c6ff601e4f Vulnerability Report01-02-2025
3.8.0 docker pull icr.io/ibmz/zookeeper@sha256:2ad8bb496d55bfaa64c20c7cea8aaca3795dfee1f099f14ec3ec1af8d8e555c1 Vulnerability Report01-02-2025
Version Pull String Security (IBM Cloud) Created

Usage Notes

Start a Zookeeper server instance:

docker run --name some-zookeeper --restart always -d icr.io/ibmz/zookeeper:[version]

This image includes EXPOSE 2181 2888 3888 8080 (the zookeeper client port, follower port, election port, AdminServer port respectively), so standard container linking will make it automatically available to the linked containers. Since the Zookeeper "fails fast" it's better to always restart it.

Connect to Zookeeper from an application in another Docker container:

docker run --name some-app --link some-zookeeper:icr.io/ibmz/zookeeper:[version] -d application-that-uses-zookeeper

Connect to Zookeeper from the Zookeeper command line client:

docker run -it --rm --link some-zookeeper:icr.io/ibmz/zookeeper:[version] zookeeper zkCli.sh -server zookeeper