Skip to content

sauljabin/kafka-sandbox

Repository files navigation

Kafka Sandbox it's a markdown book designed to help you to deploy a kafka sandbox locally. It intends to be a simple way to get started with kafka and help you on your learning path. It provides you with a wide variety of tools from the kafka ecosystem and a simple way to run them all. It also includes a set of tools and tips to make it easier for you to use kafka. It does not include security since it is not a production system.

You can access it at https://sauljabin.github.io/kafka-sandbox/.

This repository is for educational purposes. This book is power by mdBook.

Developing Commands

You must to install rust first.

Install mdbook:

cargo install mdbook

Run local server:

mdbook serve --open

Build statics:

mdbook build

Using Docker

Create docker image:

docker build -t sauljabin/kafka-sandbox-book:latest -f docker/Dockerfile .

Running the book (open it in the web browser):

docker run --name kafka-sandbox-book -d -p 80:80 sauljabin/kafka-sandbox-book:latest