Issue 1
docker pull edenhill/kcat
Using default tag: latest
Error response from daemon: manifest for edenhill/kcat:latest not found: manifest unknown: manifest unknown
Issue 2
Description: Produce message with kcat container not work
Step 1: Produce message
docker run -it --rm --network host edenhill/kcat:1.7.0 -b localhost:9092 -t kcat -P
Step 2: Consume message: not work
docker run --net host -it --rm edenhill/kcat:1.7.0 -b localhost:9092 -t kcat -C -f 'Key:%k Value:%s \n'
kafkacat -C -b localhost:9092 -t kcat -o beginning
- With kafka 2.13-3.9.0 script
bin/kafka-console-consumer.sh --topic kcat --from-beginning --bootstrap-server localhost:9092
Then i used the command kafkacat -P -b localhost:9092 -t kcat, which worked well
Issue 1
docker pull edenhill/kcat Using default tag: latest Error response from daemon: manifest for edenhill/kcat:latest not found: manifest unknown: manifest unknownIssue 2
Description: Produce message with kcat container not work
Step 1: Produce message
Step 2: Consume message: not work
docker run --net host -it --rm edenhill/kcat:1.7.0 -b localhost:9092 -t kcat -C -f 'Key:%k Value:%s \n'Then i used the command
kafkacat -P -b localhost:9092 -t kcat, which worked well