Debezium日常分享系列之:将容器镜像移至 quay.io

devtools/2024/9/24 20:09:34/

在Debezium 3.0.0.Final发布之后,我们将不再向docker.io发布容器镜像更新。旧版本的Debezium 2.x和1.x镜像将继续保留在docker.io上;然而,所有未来的Debezium 2.7.x和3.x或更高版本的镜像将只能在quay.io上获得。

以下图表显示了所有即将停用的镜像的新位置:

旧存储库新的拉取命令
debezium/basedocker pull quay.io/debezium/base
debezium/connectdocker pull quay.io/debezium/connect
debezium/connect-basedocker pull quay.io/debezium/connect-base
debezium/kafkadocker pull quay.io/debezium/kafka
debezium/example-mariadbdocker pull quay.io/debezium/example-mariadb
debezium/example-mongodbdocker pull quay.io/debezium/example-mongodb
debezium/example-mysqldocker pull quay.io/debezium/example-mysql
debezium/example-mysql-masterdocker pull quay.io/debezium/example-mysql-master
debezium/example-mysql-replicadocker pull quay.io/debezium/example-mysql-replica
debezium/example-postgresdocker pull quay.io/debezium/example-postgres
debezium/mongo-initiatordocker pull quay.io/debezium/mongo-initiator
debezium/operatordocker pull quay.io/debezium/operator
debezium/postgresdocker pull quay.io/debezium/postgres
debezium/serverdocker pull quay.io/debezium/server
debezium/toolingdocker pull quay.io/debezium/tooling
debezium/website-builderdocker pull quay.io/debezium/website-builder
debezium/zookeeperdocker pull quay.io/debezium/zookeeper

http://www.ppmy.cn/devtools/116650.html

相关文章

python | huey,一个非常厉害的 任务调度 Python 库!

本文来源公众号“python”,仅用于学术分享,侵权删,干货满满。 原文链接:huey,一个非常厉害的 Python 库! 大家好,今天为大家分享一个非常厉害的 Python 库 - huey。 Github地址:h…

图片切换示例2【JavaScript】

这段代码实现了一个简单的图片切换效果。当用户将鼠标悬停在不同的小缩略图上时&#xff0c;主显示框&#xff08;#box&#xff09;的背景图片会切换为相应的缩略图所代表的图片。 实现效果&#xff1a; 代码&#xff1a; <!DOCTYPE html> <html lang"zh"…

project generator 简单使用(二)之 CLion 与 AC6

文章目录 1 AC6 之于 CLion2 配置 progen3 可执行文件 size 显示优化4 测试 1 AC6 之于 CLion 1&#xff09;在上一篇文章中&#xff0c;我们知道 project generator 通过其 “Write Once, Compile any Tool” &#xff08;跨工具&#xff09;的特性&#xff0c;可以让我们使用…

Vue3:$refs和$parent实现组件通信

在Vue3中&#xff0c;refs和refs和parent是用于组件间通信的重要机制 一.$refs 1.操作子组件数据 一旦获取到子组件的实例&#xff0c;父组件可以修改子组件暴露的变量值&#xff0c;实现父子组件间的直接数据交换。 2.批量处理子组件 $refs可以用于同时获取多个子组件的…

Vue相关

Vue2 组件传递事件&#xff1a; props $emit sync v-model $parent / $children $parent获取父组件的实例&#xff0c;任意调用父组件的方法&#xff0c;修改父组件的数据 ref 父组件获取 子组件 实例&#xff0c;任意调用子组件的方法获取子组件的属性 provide / injectp…

【Linux】环境变量

一、引入环境变量 1.1 引入环境变量 main函数是有参数的&#xff0c;该参数就用来接收命令行参数的。当我们在执行文件的过程中&#xff0c;我们可以输入一些选项。 1.1.1 参数说明 argc&#xff08;argument count&#xff09;&#xff1a;表示命令行参数的数量&#xff0c…

c++ pair

C中的pair是一个模板类&#xff0c;用来存储两个不同类型的对象。它位于<utility>头文件中&#xff0c;并定义在std命名空间中。 pair的定义如下&#xff1a; template <class T1, class T2> struct pair {using first_type T1;using second_type T2;T1 first;…

单片机学到什么程度才可以去工作?

说实话&#xff0c;10几年前&#xff0c;我自学单片机转行的时候&#xff0c;也是一头雾水&#xff0c;也是一边苦苦挣扎&#xff0c;一边迷茫的状态。 硬件、软件、编程...样样都需要学&#xff0c;连从哪儿开始都不知道&#xff0c;每次看到那些密密麻麻的电路图和代码&#…