DBZ-6216 Update documentation to refer to quay.io images

This commit is contained in:
Vojtech Juranek 2023-03-20 22:42:55 +01:00 committed by Jiri Pechanec
parent 7c9ccb561b
commit 7376bca551
3 changed files with 7 additions and 7 deletions

View File

@ -188,7 +188,7 @@ docker run -it --rm --name connect \
-e CONNECT_VALUE_CONVERTER_APICURIO_REGISTRY_AUTO-REGISTER=true \
-e CONNECT_VALUE_CONVERTER_APICURIO_REGISTRY_FIND-LATEST=true \
-e CONNECT_SCHEMA_NAME_ADJUSTMENT_MODE=avro \
-p 8083:8083 debezium/connect:{debezium-docker-label}
-p 8083:8083 quay.io/debezium/connect:{debezium-docker-label}
----
endif::community[]
@ -429,7 +429,7 @@ docker run -it --rm --name connect \
-e VALUE_CONVERTER=io.confluent.connect.avro.AvroConverter \
-e CONNECT_KEY_CONVERTER_SCHEMA_REGISTRY_URL=http://schema-registry:8081 \
-e CONNECT_VALUE_CONVERTER_SCHEMA_REGISTRY_URL=http://schema-registry:8081 \
-p 8083:8083 debezium/connect:{debezium-docker-label}
-p 8083:8083 quay.io/debezium/connect:{debezium-docker-label}
----
. Run a console consumer that reads new Avro messages from the `db.myschema.mytable` topic and decodes to JSON:
@ -441,7 +441,7 @@ docker run -it --rm --name avro-consumer \
--link kafka:kafka \
--link mysql:mysql \
--link schema-registry:schema-registry \
debezium/connect:{debezium-docker-label} \
quay.io/debezium/connect:{debezium-docker-label} \
/kafka/bin/kafka-console-consumer.sh \
--bootstrap-server kafka:9092 \
--property print.key=true \

View File

@ -58,7 +58,7 @@ For example, in some environments it might not be possible to reach the underlyi
The Debezium UI https://quay.io/repository/debezium/debezium-ui[container image] is available for running the UI. To start the UI and connect to an existing Kafka Connect instance via Docker (where KAFKA_CONNECT_URIS supplies the comma-separated list of available URI(s)):
----
$ docker run -it --rm --name debezium-ui -p 8080:8080 -e KAFKA_CONNECT_URIS=http://connect:8083 debezium/debezium-ui:{debezium-version}
$ docker run -it --rm --name debezium-ui -p 8080:8080 -e KAFKA_CONNECT_URIS=http://connect:8083 quay.io/debezium/debezium-ui:{debezium-version}
----
The UI connects to Kafka Connect via REST, so you need to make sure that the latter is reachable, e.g. by running both components on the same Docker network.

View File

@ -201,7 +201,7 @@ and maps the Docker host's port 9010 to the container's JMX port:
[source,shell,options="nowrap"]
----
$ docker run -it --rm --name zookeeper -p 2181:2181 -p 2888:2888 -p 3888:3888 -p 9010:9010 -e JMXPORT=9010 -e JMXHOST=10.0.1.10 debezium/zookeeper:latest
$ docker run -it --rm --name zookeeper -p 2181:2181 -p 2888:2888 -p 3888:3888 -p 9010:9010 -e JMXPORT=9010 -e JMXHOST=10.0.1.10 quay.io/debezium/zookeeper:latest
----
====
@ -243,7 +243,7 @@ and maps the Docker host's port 9011 to the container's JMX port:
[source,shell,options="nowrap"]
----
$ docker run -it --rm --name kafka -p 9092:9092 -p 9011:9011 -e JMXPORT=9011 -e JMXHOST=10.0.1.10 --link zookeeper:zookeeper debezium/kafka:latest
$ docker run -it --rm --name kafka -p 9092:9092 -p 9011:9011 -e JMXPORT=9011 -e JMXHOST=10.0.1.10 --link zookeeper:zookeeper quay.io/debezium/kafka:latest
----
====
@ -295,7 +295,7 @@ $ docker run -it --rm --name connect \
--link zookeeper:zookeeper \
--link kafka:kafka \
--link mysql:mysql \
debezium/connect:latest
quay.io/debezium/connect:latest
----
====