https://github.com/alonsodomin/docker-zookeeper
ZooKeeper Docker Container
https://github.com/alonsodomin/docker-zookeeper
Last synced: 2 months ago
JSON representation
ZooKeeper Docker Container
- Host: GitHub
- URL: https://github.com/alonsodomin/docker-zookeeper
- Owner: alonsodomin
- License: apache-2.0
- Created: 2015-06-04T06:41:15.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-06T16:12:07.000Z (almost 10 years ago)
- Last Synced: 2025-01-04T21:45:24.985Z (4 months ago)
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Zookeeper
Docker Container holding an instance of [Apache Zookeeper](https://zookeeper.apache.org)
# Starting the container
To start the container just run following command:
```
docker run -d --name some_zookeeper alonsodomin/zookeeper
```# Custom configuration
To provide with a custom configuration file you can mount the configuration folder as volume in
your host using following command:```
docker run -d --name some_zookeeper -v /path/to/my/conf:/etc/zookeeper alonsodomin/zookeeper
```