From 41c8cde4fd8b2dc47ddf93956313cca4ad8032f7 Mon Sep 17 00:00:00 2001 From: Dale Lane Date: Wed, 11 Jan 2023 19:47:12 +0000 Subject: [PATCH] docs: update version number references ready for next release (#103) Signed-off-by: Dale Lane --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3ef089a..5c922b0 100644 --- a/README.md +++ b/README.md @@ -86,13 +86,13 @@ curl -X POST -H "Content-Type: application/json" http://localhost:8083/connector This repository includes an example Dockerfile to run Kafka Connect in distributed mode. It also adds in the MQ source connector as an available connector plugin. It uses the default `connect-distributed.properties` and `connect-log4j.properties` files. 1. `mvn clean package` -1. `docker build -t kafkaconnect-with-mq-source:1.3.0 .` -1. `docker run -p 8083:8083 kafkaconnect-with-mq-source:1.3.0` +1. `docker build -t kafkaconnect-with-mq-source:1.3.2 .` +1. `docker run -p 8083:8083 kafkaconnect-with-mq-source:1.3.2` **NOTE:** To provide custom properties files create a folder called `config` containing the `connect-distributed.properties` and `connect-log4j.properties` files and use a Docker volume to make them available when running the container like this: ``` shell -docker run -v $(pwd)/config:/opt/kafka/config -p 8083:8083 kafkaconnect-with-mq-source:1.3.0 +docker run -v $(pwd)/config:/opt/kafka/config -p 8083:8083 kafkaconnect-with-mq-source:1.3.2 ``` To start the MQ connector, you can use `config/mq-source.json` in this repository after replacing all placeholders and use a command like this: