https://github.com/cross311/docker-compose-samples
Collection of docker compose yml files to help test cool technology
https://github.com/cross311/docker-compose-samples
docker docker-compose eventstore kafka
Last synced: about 2 months ago
JSON representation
Collection of docker compose yml files to help test cool technology
- Host: GitHub
- URL: https://github.com/cross311/docker-compose-samples
- Owner: cross311
- License: mit
- Created: 2017-08-18T03:17:45.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-18T03:53:12.000Z (almost 9 years ago)
- Last Synced: 2025-03-27T15:53:33.489Z (over 1 year ago)
- Topics: docker, docker-compose, eventstore, kafka
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-compose-samples
Collection of docker compose yml files to help test cool technology
### Required
- Docker for [your platform]
- wget
## Kafka
Docker compose spotify's single container for both zookeeper and kafka, auto configured.
additionally running kafka-manager from `dockerkafka`
### Run platform
```sh
wget -q -O - https://raw.githubusercontent.com/cross311/docker-compose-samples/master/kafka-docker-compose.yml | docker-compose -f - -p expressUp up -d
```
### Initialize
I have not been able to determine how to get the kafka-manager to auto pick up the cluster.
Follow these steps to register the kafka docker instance with the manager.
- `http://localhost:9000/addCluster`
- Give it a name (example: `docker-kafka`)
- Cluster host: `zookeeper:2181`
- kafka version: `0.8.2.1`
- Spotify's version does not support JMX :(
- Save!
## Eventstore
Docker compose eventstore's single instance container.
### Run platform
```sh
wget -q -O - https://raw.githubusercontent.com/cross311/docker-compose-samples/master/eventstore-docker-compose.yml | docker-compose -f - -p expressUp up -d
```
### Login
- `http://localhost:2113`
- username: `admin`
- password: `changeit`