Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the need to clone the repository a bit more explicit. #481

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ Cluster Setup

1. Install [Docker](https://www.docker.io/gettingstarted/#h_installation)
2. Install [Compose](http://docs.docker.com/compose/install/)
3. Update `docker-compose.yml` with your docker host IP (`KAFKA_ADVERTISED_HOST_NAME`\)
4. If you want to customise any Kafka parameters, simply add them as environment variables in `docker-compose.yml`. For example:
3. Clone this repository.
4. Update `docker-compose.yml` with your docker host IP (`KAFKA_ADVERTISED_HOST_NAME`\)
5. If you want to customise any Kafka parameters, simply add them as environment variables in `docker-compose.yml`. For example:
- to increase the `message.max.bytes` parameter add `KAFKA_MESSAGE_MAX_BYTES: 2000000` to the `environment` section.
- to turn off automatic topic creation set `KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'false'`
5. Start the cluster
6. Start the cluster

```
$ docker-compose up
Expand Down