Secure by Design, Built for Speed, Hardened Container Images on a minimal base CleanStart OS.
50K+
Verified ZOOKEEPER Container Image
A hardened, minimal ZOOKEEPER container image built from source with verifiable software provenance and an SBOM, designed for secure production deployments.
For additional versions including FIPS support, explore CleanStart Images — secure, hardened container images
Download the container image from the registry
docker pull cleanstart/zookeeper:latest
docker pull cleanstart/zookeeper:latest-dev
Run the container with basic configuration
docker run -it --name zookeeper cleanstart/zookeeper:latest
Deploy with production security settings
docker run -d --name zookeeper-prod \
--security-opt=no-new-privileges \
--user 1000:1000 \
--restart unless-stopped \
cleanstart/zookeeper:latest
Volume Mount Mount local directory for persistent data
docker run -v /app:/app cleanstart/zookeeper:latest
Port Forwarding Run with custom port mappings
docker run -p 8080:8080 cleanstart/zookeeper:latest
Recommended security context for Kubernetes deployments
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsUser: 1000
runAsGroup: 1000
Why Use CleanStart Images
Content type
Image
Digest
sha256:c390643a1…
Size
366.4 MB
Last updated
about 19 hours ago
docker pull cleanstart/zookeeper