docker exec -it <container id> /bin/sh
cd /usr/bin
./kafka-topics --zookeeper zookeeper:2181 --create --topic test-topic --partitions 1 --replication-factor 1
./kafka-topics --zookeeper zookeeper:2181 --list
./kafka-console-producer --broker-list localhost:9092 --topic test-topic
./kafka-console-consumer --bootstrap-server localhost:9092 --topic test-topic --from-beginning