Apache ZooKeeper - Distributed coordination service
Everything you need to deploy Zookeeper with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Zookeeper up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Zookeeper with:
blastdock init zookeeper
Interactive mode:
blastdock init zookeeper -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Zookeeper installation with these configuration options.
Client connection port
Admin server port
Complete Docker Compose configuration for Zookeeper deployment.
version: '3.8'
services:
zookeeper:
image: zookeeper:latest
container_name: {{ project_name }}_zookeeper
restart: unless-stopped
ports:
- "2181"
- "8080"
environment:
0: ZOO_MY_ID=1
- ZOO_SERVERS=server.1=0.0.0.0: 2888:3888;2181
volumes:
- /data
- /datalog
- /logs
networks:
- zookeeper_network
volumes:
zookeeper_data:
driver: local
zookeeper_datalog:
driver: local
zookeeper_logs:
driver: local
networks:
zookeeper_network:
driver: bridge