ghcr.io/cloudnative-pg/postgresql:16-bookworm linux/amd64

ghcr.io/cloudnative-pg/postgresql:16-bookworm - 国内下载镜像源 浏览次数:10

这是一个 Cloud Native PG 提供的 PostgreSQL 数据库服务器 Docker 镜像。它提供了一种便捷的方式来在 Docker 环境中运行和管理 PostgreSQL 数据库。

源镜像 ghcr.io/cloudnative-pg/postgresql:16-bookworm
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm
镜像ID sha256:40d353ef51850648b61ec597b06ed7574e658ef278fd4e7f0fcb95b57fb163dd
镜像TAG 16-bookworm
大小 688.45MB
镜像源 ghcr.io
CMD postgres
启动入口 docker-entrypoint.sh
工作目录
OS/平台 linux/amd64
浏览量 10 次
贡献者
镜像创建 2025-09-08T00:19:11.500074605Z
同步时间 2026-02-27 18:06
开放端口
5432/tcp
目录挂载
/var/lib/postgresql/data
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/16/bin GOSU_VERSION=1.17 LANG=en_US.utf8 PG_MAJOR=16 PG_VERSION=16.10-1.pgdg12+1 PGDATA=/var/lib/postgresql/data
镜像标签
This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.10-bookworm.: description PostgreSQL Container Images: name This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.10-bookworm.: org.opencontainers.image.description 5: release PostgreSQL Container images.: summary The CloudNativePG Contributors: vendor 16.10-1.pgdg12+1: version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm  ghcr.io/cloudnative-pg/postgresql:16-bookworm

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm  ghcr.io/cloudnative-pg/postgresql:16-bookworm

Shell快速替换命令

sed -i 's#ghcr.io/cloudnative-pg/postgresql:16-bookworm#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm  ghcr.io/cloudnative-pg/postgresql:16-bookworm'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm  ghcr.io/cloudnative-pg/postgresql:16-bookworm'

镜像构建历史


# 2025-09-08 08:19:11  0.00B 指定运行容器时使用的用户
USER 26
                        
# 2025-09-08 08:19:11  1.78KB 执行命令并创建新的镜像层
RUN /bin/sh -c usermod -u 26 postgres # buildkit
                        
# 2025-09-08 08:19:11  249.39MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -xe; 	apt-get update; 	apt-get install -y --no-install-recommends 		build-essential python3-dev 		python3-pip 		python3-psycopg2 		python3-setuptools 	; 	pip3 install --break-system-packages --upgrade pip; 	pip3 install --break-system-packages --no-deps -r requirements.txt; 	apt-get remove -y --purge --autoremove build-essential python3-dev; 	rm -rf /var/lib/apt/lists/*; # buildkit
                        
# 2025-09-08 08:18:45  3.01MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -xe; 	rm -fr /var/lib/postgresql/data; 	apt-get update; 	if apt-get -s upgrade | grep "^Inst postgres"; then 		echo "ERROR: Upgradable postgres packages found!"; 		apt-get -s upgrade | grep "^Inst postgres"; 		exit 1; 	fi; 	apt-get install -y --no-install-recommends 		"postgresql-${PG_MAJOR}-pgaudit" 		"postgresql-${PG_MAJOR}-pgvector" 		"postgresql-${PG_MAJOR}-pg-failover-slots" 	; 	rm -fr /tmp/* ; 	rm -rf /var/lib/apt/lists/*; # buildkit
                        
# 2025-09-08 08:18:41  50.22KB 复制新文件或目录到容器中
COPY requirements.txt / # buildkit
                        
# 2025-09-08 08:18:41  0.00B 添加元数据标签
LABEL org.opencontainers.image.description=This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.10-bookworm.
                        
# 2025-09-08 08:18:41  0.00B 添加元数据标签
LABEL name=PostgreSQL Container Images vendor=The CloudNativePG Contributors version=16.10-1.pgdg12+1 release=5 summary=PostgreSQL Container images. description=This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.10-bookworm.
                        
# 2025-09-04 05:48:27  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2025-09-04 05:48:27  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2025-09-04 05:48:27  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2025-09-04 05:48:27  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2025-09-04 05:48:27  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2025-09-04 05:48:27  16.50KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2025-09-04 05:48:27  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql/data]
                        
# 2025-09-04 05:48:27  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
                        
# 2025-09-04 05:48:27  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/data
                        
# 2025-09-04 05:48:27  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2025-09-04 05:48:27  59.92KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	dpkg-divert --add --rename --divert "/usr/share/postgresql/postgresql.conf.sample.dpkg" "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample"; 	cp -v /usr/share/postgresql/postgresql.conf.sample.dpkg /usr/share/postgresql/postgresql.conf.sample; 	ln -sv ../postgresql.conf.sample "/usr/share/postgresql/$PG_MAJOR/"; 	sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/share/postgresql/postgresql.conf.sample; 	grep -F "listen_addresses = '*'" /usr/share/postgresql/postgresql.conf.sample # buildkit
                        
# 2025-09-04 05:48:27  318.65MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -ex; 		export PYTHONDONTWRITEBYTECODE=1; 		dpkgArch="$(dpkg --print-architecture)"; 	aptRepo="[ signed-by=/usr/local/share/keyrings/postgres.gpg.asc ] http://apt.postgresql.org/pub/repos/apt bookworm-pgdg main $PG_MAJOR"; 	case "$dpkgArch" in 		amd64 | arm64 | ppc64el) 			echo "deb $aptRepo" > /etc/apt/sources.list.d/pgdg.list; 			apt-get update; 			;; 		*) 			echo "deb-src $aptRepo" > /etc/apt/sources.list.d/pgdg.list; 						savedAptMark="$(apt-mark showmanual)"; 						tempDir="$(mktemp -d)"; 			cd "$tempDir"; 						apt-get update; 			apt-get install -y --no-install-recommends dpkg-dev; 			echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list; 			_update_repo() { 				dpkg-scanpackages . > Packages; 				apt-get -o Acquire::GzipIndexes=false update; 			}; 			_update_repo; 						nproc="$(nproc)"; 			export DEB_BUILD_OPTIONS="nocheck parallel=$nproc"; 			apt-get build-dep -y postgresql-common-dev; 			apt-get source --compile postgresql-common-dev; 			_update_repo; 			apt-get build-dep -y "postgresql-$PG_MAJOR=$PG_VERSION"; 			apt-get source --compile "postgresql-$PG_MAJOR=$PG_VERSION"; 									apt-mark showmanual | xargs apt-mark auto > /dev/null; 			apt-mark manual $savedAptMark; 						ls -lAFh; 			_update_repo; 			grep '^Package: ' Packages; 			cd /; 			;; 	esac; 		apt-get install -y --no-install-recommends postgresql-common; 	sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; 	apt-get install -y --no-install-recommends 		"postgresql-$PG_MAJOR=$PG_VERSION" 	; 		rm -rf /var/lib/apt/lists/*; 		if [ -n "$tempDir" ]; then 		apt-get purge -y --auto-remove; 		rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; 	fi; 		find /usr -name '*.pyc' -type f -exec bash -c 'for pyc; do dpkg -S "$pyc" &> /dev/null || rm -vf "$pyc"; done' -- '{}' +; 		postgres --version # buildkit
                        
# 2025-09-04 05:48:27  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=16.10-1.pgdg12+1
                        
# 2025-09-04 05:48:27  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/16/bin
                        
# 2025-09-04 05:48:27  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=16
                        
# 2025-09-04 05:48:27  3.98KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -ex; 	key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; 	export GNUPGHOME="$(mktemp -d)"; 	mkdir -p /usr/local/share/keyrings/; 	gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; 	gpg --batch --export --armor "$key" > /usr/local/share/keyrings/postgres.gpg.asc; 	gpgconf --kill all; 	rm -rf "$GNUPGHOME" # buildkit
                        
# 2025-09-04 05:48:27  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2025-09-04 05:48:27  3.18MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		libnss-wrapper 		xz-utils 		zstd 	; 	rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2025-09-04 05:48:27  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2025-09-04 05:48:27  25.19MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	if [ -f /etc/dpkg/dpkg.cfg.d/docker ]; then 		grep -q '/usr/share/locale' /etc/dpkg/dpkg.cfg.d/docker; 		sed -ri '/\/usr\/share\/locale/d' /etc/dpkg/dpkg.cfg.d/docker; 		! grep -q '/usr/share/locale' /etc/dpkg/dpkg.cfg.d/docker; 	fi; 	apt-get update; apt-get install -y --no-install-recommends locales; rm -rf /var/lib/apt/lists/*; 	echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen; 	locale-gen; 	locale -a | grep 'en_US.utf8' # buildkit
                        
# 2025-09-04 05:48:27  4.16MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	savedAptMark="$(apt-mark showmanual)"; 	apt-get update; 	apt-get install -y --no-install-recommends ca-certificates wget; 	rm -rf /var/lib/apt/lists/*; 	dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')"; 	wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch"; 	wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch.asc"; 	export GNUPGHOME="$(mktemp -d)"; 	gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4; 	gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu; 	gpgconf --kill all; 	rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc; 	apt-mark auto '.*' > /dev/null; 	[ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; 	apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	chmod +x /usr/local/bin/gosu; 	gosu --version; 	gosu nobody true # buildkit
                        
# 2025-09-04 05:48:27  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.17
                        
# 2025-09-04 05:48:27  9.93MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -ex; 	apt-get update; 	apt-get install -y --no-install-recommends 		gnupg 		less 	; 	rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2025-09-04 05:48:27  4.32KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	groupadd -r postgres --gid=999; 	useradd -r -g postgres --uid=999 --home-dir=/var/lib/postgresql --shell=/bin/bash postgres; 	install --verbose --directory --owner postgres --group postgres --mode 1777 /var/lib/postgresql # buildkit
                        
# 2025-08-11 08:00:00  74.81MB 
# debian.sh --arch 'amd64' out/ 'bookworm' '@1754870400'
                        
                    

镜像信息

{
    "Id": "sha256:40d353ef51850648b61ec597b06ed7574e658ef278fd4e7f0fcb95b57fb163dd",
    "RepoTags": [
        "ghcr.io/cloudnative-pg/postgresql:16-bookworm",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:16-bookworm"
    ],
    "RepoDigests": [
        "ghcr.io/cloudnative-pg/postgresql@sha256:bf0b0ec764b26fbb9136476ed29ad92abdc1277d0465194b8bf420f0116b974d",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql@sha256:838985d1ed9992046c0fcca40a5b0fcccbd6939e60580265d1a383ad54bd6098"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-09-08T00:19:11.500074605Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "26",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "5432/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/16/bin",
            "GOSU_VERSION=1.17",
            "LANG=en_US.utf8",
            "PG_MAJOR=16",
            "PG_VERSION=16.10-1.pgdg12+1",
            "PGDATA=/var/lib/postgresql/data"
        ],
        "Cmd": [
            "postgres"
        ],
        "Image": "",
        "Volumes": {
            "/var/lib/postgresql/data": {}
        },
        "WorkingDir": "",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "description": "This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.10-bookworm.",
            "name": "PostgreSQL Container Images",
            "org.opencontainers.image.description": "This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.10-bookworm.",
            "release": "5",
            "summary": "PostgreSQL Container images.",
            "vendor": "The CloudNativePG Contributors",
            "version": "16.10-1.pgdg12+1"
        },
        "StopSignal": "SIGINT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 688452958,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/68757805c550bf30b9aac34f8dfb35f03cd7aa73653c035eac5b88eb288ee505/diff:/var/lib/docker/overlay2/1a42cf5ef7f234ecaeff1b9a62d41658b683fcf092535d011bef994be96bb933/diff:/var/lib/docker/overlay2/57775b3d81a9802f3d80a9f2f064b147413477f2e17c6b08a6c5569b7bfe3bf5/diff:/var/lib/docker/overlay2/4c07833d1a32405052bf6821c2533e9830164eee6ee424ac37da615d96b5364d/diff:/var/lib/docker/overlay2/8554948210ffe9a58f110fd40e05874f77761935828bdffcc4665aa643ab10ee/diff:/var/lib/docker/overlay2/5f53580f43d11a2491c35edd717b745da7af1b4acc01c4411bebf85255985919/diff:/var/lib/docker/overlay2/79dc11680b8169a63f8c0709b59d1fd90f34b5990dd678952b35b9c57079c9eb/diff:/var/lib/docker/overlay2/25ca47added450f6aa29a5300120aeabeb24dace1101570b763c938811c122bb/diff:/var/lib/docker/overlay2/92964d1b8b7be8438595596672637b6d6c985c27cb3bcab1e3e9d14ce321a56c/diff:/var/lib/docker/overlay2/4973ec41f6fbf6bda42c48528edb92ec5c25041bf53c0c48d01b7b9e09229242/diff:/var/lib/docker/overlay2/585684d7fa832b206a3f0ca9d654e472912277eeb7274ed661a6cdb6ed35764b/diff:/var/lib/docker/overlay2/2c6075ebd021f89f96c0ef273550f933379dc95a4cc5310544e602e8a514214b/diff:/var/lib/docker/overlay2/b3d3b4e1a22c0314d5e7f42d6ca2cc29d3df0624c1be1b0098c42a376c7f70c2/diff:/var/lib/docker/overlay2/72a88d70a9fa6e053b09a51814db7568f2044d3fbe4d8cbdb94f506dfe622696/diff:/var/lib/docker/overlay2/c8388048afde17c1c4472f3ff584b8661156ccd74a7176328a212983ce813931/diff:/var/lib/docker/overlay2/73a8e506cbb4b3f2ce40c225eef6d552aa460f205f84e34cd5a225d070d5479a/diff:/var/lib/docker/overlay2/816cb2ebfc26a3d7da8c4882dd99cc4dff333dd28b0b0bbb663c6ebf9a9ac9ce/diff",
            "MergedDir": "/var/lib/docker/overlay2/4f8a1c6a91c5a2b65ca0e88506a60eb405f63af222fa734e044ae2af2fe312de/merged",
            "UpperDir": "/var/lib/docker/overlay2/4f8a1c6a91c5a2b65ca0e88506a60eb405f63af222fa734e044ae2af2fe312de/diff",
            "WorkDir": "/var/lib/docker/overlay2/4f8a1c6a91c5a2b65ca0e88506a60eb405f63af222fa734e044ae2af2fe312de/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:eb5f13bce9936c760b9fa73aeb1b608787daa36106cc888104132e353ed37252",
            "sha256:15d663bd18260ebff94647f1041e8864305ee137072608916588e178913d3934",
            "sha256:a483121ecf1a6650f7edfc64e9d9a4b9166f9f9f894957d027ddf7fe2e9ce9b0",
            "sha256:05b040b69be0a41b9266aff7182f7bd730eaece8a44f8d6d92145779d109ceba",
            "sha256:e9c34b2413b508d6e08e134345f5ef07ed2c7f0f8c1b8fc556d16396e8d38462",
            "sha256:58e90c482a7761405876a457147463a12efcc558592ca8aad6aa0ed3af4bfed1",
            "sha256:a9451b9d085ceb8dad5113a0e6bc451856d1b63db1363b062ea51919b9e5af38",
            "sha256:de5002dfd0a6b6184229372c26ff6a1caee9f5bb91b871cd06f4063ad18fe17b",
            "sha256:eb4b167eb20097d8398a99ec64dc085e8d5f6257474ae67a9333a9fa9d8ba241",
            "sha256:fa24b5d792015353a53807c2323e70c06691dbed30fb935a2def2a476cca1681",
            "sha256:ea94c0a2ddfc6f4add113618388e4ab9be854284d0ee5ccd39e952dc8b296000",
            "sha256:b4c5a59da8a36de89535a28ad5767d785081e9e4e06e6132d985b91cb79fd837",
            "sha256:5d30eb7cf889654be02c3c9d7a304a3ce1fe683337907b3166952342f930650a",
            "sha256:c82185ba984d7abb4cc64ff0387d2fef43c5036535d97778d9a23d76dc0f54dc",
            "sha256:35ca1014a169a61ef00774ded277fe3fc0f80aa6ea1d4a42dc7d0ee1bcbc4c00",
            "sha256:c93c8be6118c1f0f4cdb7c73d127fdbed8cf6a4ea3d352557615205a86688769",
            "sha256:1085c5070c75e51bad8293796e3571665e507593556eec3e4f10b71882d77052",
            "sha256:d01f1fddef46b78d1d50924f218383c4aeb450a1b4e1b7bea76ddb81ea60f7fc"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-02-27T18:06:06.42294604+08:00"
    }
}

更多版本

ghcr.io/cloudnative-pg/postgresql:15

linux/amd64 ghcr.io610.35MB2025-05-06 09:53
1092

ghcr.io/cloudnative-pg/postgresql:17-bookworm

linux/amd64 ghcr.io651.76MB2025-09-02 02:13
431

ghcr.io/cloudnative-pg/postgresql:16.10-system-trixie

linux/amd64 ghcr.io805.21MB2025-10-28 20:30
319

ghcr.io/cloudnative-pg/postgresql:16

linux/amd64 ghcr.io740.81MB2025-10-28 20:47
462

ghcr.io/cloudnative-pg/postgresql:17

linux/amd64 ghcr.io742.62MB2025-10-29 14:41
645

ghcr.io/cloudnative-pg/postgresql:16-bookworm

linux/amd64 ghcr.io688.45MB2026-02-27 18:06
9