docker-kafka-zookeeper icon indicating copy to clipboard operation
docker-kafka-zookeeper copied to clipboard

Remove broken newline

Open eriktim opened this issue 4 years ago • 2 comments

When setting AUTO_CREATE_TOPICS=false and inspecting the server.properties in the Docker container I noticed the "\n" gets printed in the file as is. >> will automatically add a newline for us so I removed the prefix.

You can try by running:

$ echo "foo" > test.txt
$ echo "bar" >> test.txt
$ cat test.txt
foo
bar

eriktim avatar May 07 '21 15:05 eriktim

Did not notice this before but fixes #9.

eriktim avatar May 28 '21 12:05 eriktim

Hi @eriktim This repository is not maintained. You can use this one: https://github.com/obalunenko/docker-kafka-zookeeper . It already has pre-build images for all Kafka with zookeeper versions published on the official site https://kafka.apache.org/downloads

obalunenko avatar May 17 '24 15:05 obalunenko