An open API service indexing awesome lists of open source software.

https://github.com/deployable/docker-zookeeper

Zookeeper Docker image and compose/cluster definitions
https://github.com/deployable/docker-zookeeper

cluster docker docker-compose docker-image zookeeper

Last synced: 7 months ago
JSON representation

Zookeeper Docker image and compose/cluster definitions

Awesome Lists containing this project

README

          

# ZooKeeper in Docker

A ZooKeeper image and compose definitions for single node and a cluster

Image available on the Docker registrsy as [`deployable/zookeeper`](https://hub.docker.com/r/deployable/zookeeper)

Dockerfile and compose definitions for single node and cluster https://github.com/deployable/docker-zookeeper

## Commands

### Run a zookeeper instance

```
docker run -p 2181:2181 deployable/zookeeper
```

### Start an compose instance

```
docker-compose up
```

### Start a 3 node cluster

```
docker-compose -f docker-compose-cluster.yml up
```

### Build the Zookeeper image

```
docker build -t you/docker .
```

### About

Matt Hoyle