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

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

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

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

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#ghcr.io/cloudnative-pg/postgresql:15-bookworm#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:15-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:15-bookworm && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:15-bookworm  ghcr.io/cloudnative-pg/postgresql:15-bookworm'

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-09-08 08:19:06  0.00B 指定运行容器时使用的用户
USER 26
                        
# 2025-09-08 08:19:06  1.78KB 执行命令并创建新的镜像层
RUN /bin/sh -c usermod -u 26 postgres # buildkit
                        
# 2025-09-08 08:19:06  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:38  2.13MB 执行命令并创建新的镜像层
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:34  50.22KB 复制新文件或目录到容器中
COPY requirements.txt / # buildkit
                        
# 2025-09-08 08:18:34  0.00B 添加元数据标签
LABEL org.opencontainers.image.description=This Docker image contains PostgreSQL and Barman Cloud based on Postgres 15.14-bookworm.
                        
# 2025-09-08 08:18:34  0.00B 添加元数据标签
LABEL name=PostgreSQL Container Images vendor=The CloudNativePG Contributors version=15.14-1.pgdg12+1 release=5 summary=PostgreSQL Container images. description=This Docker image contains PostgreSQL and Barman Cloud based on Postgres 15.14-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.42KB 执行命令并创建新的镜像层
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  312.25MB 执行命令并创建新的镜像层
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=15.14-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/15/bin
                        
# 2025-09-04 05:48:27  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=15
                        
# 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:a8df664dedbfe2d70cf04c634c1615d5dbfb077d3b29b0b1c10cded5431d6746",
    "RepoTags": [
        "ghcr.io/cloudnative-pg/postgresql:15-bookworm",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql:15-bookworm"
    ],
    "RepoDigests": [
        "ghcr.io/cloudnative-pg/postgresql@sha256:6afed5eb1e9da802a6dd9f0a1cc2c39184586efdcfee3c1997689d9d18cca3a8",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/cloudnative-pg/postgresql@sha256:20e9b92492919bfb26b92a450c95b5f2b770a092879dd1f2076cde0224673bef"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-09-08T00:19:06.570681247Z",
    "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/15/bin",
            "GOSU_VERSION=1.17",
            "LANG=en_US.utf8",
            "PG_MAJOR=15",
            "PG_VERSION=15.14-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 15.14-bookworm.",
            "name": "PostgreSQL Container Images",
            "org.opencontainers.image.description": "This Docker image contains PostgreSQL and Barman Cloud based on Postgres 15.14-bookworm.",
            "release": "5",
            "summary": "PostgreSQL Container images.",
            "vendor": "The CloudNativePG Contributors",
            "version": "15.14-1.pgdg12+1"
        },
        "StopSignal": "SIGINT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 681174521,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/2715d198e469c44947ced16519a94f9288e4842ee4d49e6298c20b95619970dd/diff:/var/lib/docker/overlay2/4e7efc9302e0e359597c7079a1816c24db762263e3bc8ac852cc912466510bd3/diff:/var/lib/docker/overlay2/97ae4c02851c976d582e728ab343ecb05dec51c5151f5ecd20f68248babc1506/diff:/var/lib/docker/overlay2/9cd2b274748b5317aab0a11a66108de053a3be716778662b786baeb5de522d75/diff:/var/lib/docker/overlay2/9069fa1dcdbf1aa4f591fab47987f11f2fa572cd1ee806102e8c37933997274e/diff:/var/lib/docker/overlay2/77c7bdb06febd14600c0635aaaef9e3dbda2be47071b3aa58c16d3db408a0578/diff:/var/lib/docker/overlay2/1eb2e356ec4633a8b8fb20dae109dedb94d83da2cdbd0481964c12a23ab525d1/diff:/var/lib/docker/overlay2/e2a0af19430dff9f0482d44cce19c6ed1e8f1cf54808d825a43fcf9ad8d8056e/diff:/var/lib/docker/overlay2/a3f540c0e24315f0f2f88a568c67cd0b50ebdb1336350f16396d2548f91a6a96/diff:/var/lib/docker/overlay2/78751ab4adbd9028333f813159f9c5b9767b31e774624217b6515b244fe9661e/diff:/var/lib/docker/overlay2/623f15838b0c159515855bfe460732c4a090541c37fa106b0f3c37041dff1c92/diff:/var/lib/docker/overlay2/a101b3f024f2b9aeffd7f7dcde5647782d54452845cb993be2e3cfb6b225ecc9/diff:/var/lib/docker/overlay2/1f890bc298f9f83482670316c38d0e4c481b6a95a233229dfccb671e519f6470/diff:/var/lib/docker/overlay2/8dad88ec66a9fd76103c8914dec554462f83e58242389be5eb0e584f7209ed39/diff:/var/lib/docker/overlay2/ba951e3fbb31bb1b4f262abfbe1cc3ec05cb7f2f61ea8f7f90f7fba52991b4e4/diff:/var/lib/docker/overlay2/64ad0ded96a27e126f780657800f616457ad3495f4f947168f93cab73485611f/diff:/var/lib/docker/overlay2/029e64718e643b4ea73a79c55f4e01cc62dfe63e33cd4e8353df2d5f43605f97/diff",
            "MergedDir": "/var/lib/docker/overlay2/e17c8c70a8fd57723cc2e1f259be1d43271f85530dbe75322a74dab0155fe80a/merged",
            "UpperDir": "/var/lib/docker/overlay2/e17c8c70a8fd57723cc2e1f259be1d43271f85530dbe75322a74dab0155fe80a/diff",
            "WorkDir": "/var/lib/docker/overlay2/e17c8c70a8fd57723cc2e1f259be1d43271f85530dbe75322a74dab0155fe80a/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:eb5f13bce9936c760b9fa73aeb1b608787daa36106cc888104132e353ed37252",
            "sha256:be8c70c68c93319c86cb44cbbeb562c1f4f2c9dd530f2ca8378732bb4ceb0cbb",
            "sha256:a47cab4a79e64df7e6387a41070faf4dc4890bda774ab03dbb2dc04c869624fe",
            "sha256:ab25b49e2a7b597d6c2e2f87f94c8869154dce569c593b3457ca1396a8e23392",
            "sha256:4054ac2d0af81a71e1ca7f9c974a20c09eeab4da4ac1614e23770902cfe9a0ad",
            "sha256:48c5489bcc56b85e625f2635e6e6fb3d8b7809e8df6dc43079a1ee7bd96607eb",
            "sha256:c1ecf1bea89cdae0655abeffba30c8a6059e7d230a941ca10466cbe43fdc0a58",
            "sha256:74b2ebb3e3aa3240db1eb5e76da06eac07f4f190068c4c021b8de52e1af3a2fb",
            "sha256:bac4c8260b566193365d7ffd6725bb66e0c3850b58d404054760b5713aa54e5d",
            "sha256:baae860f980732f2613a742c8dce6065ea25801e0d2b3cd15164fa0dbc758deb",
            "sha256:0f04cd4168862029567dd21291124d4d0530743c06d82bdc6ff4f8a8ae706799",
            "sha256:fdf8b29f02f0e7a8335731e31e7961193843bd8c69352c40890bd7a0bfc4801f",
            "sha256:f14d232f061927e88d56d07e237c734861b88078b0a9d91304353e82921a6084",
            "sha256:85ced9a7a7aa836d24f055bf293adb22104f769e9ddf5c454890a8dfb50ca065",
            "sha256:ac987cc216eb97dc77e0e54fab1e8c3e28047dc17a56cc01427ea151f836182d",
            "sha256:d01c25c2adb83731d840a7e5d70b5f2f86695220d84dc1ccbe734e5cd0cf53cc",
            "sha256:e8a051e629b8e4cebbece8d7163c8f408e672b3328bdb6d13783fcd49d70a4a5",
            "sha256:7759a214c353e9355b1eb546e7928269ee7970751ab20bfd0bd26f5adb7e4f6f"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-02-28T15:50:27.816094713+08:00"
    }
}

更多版本

ghcr.io/cloudnative-pg/postgresql:15

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

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

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

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
466

ghcr.io/cloudnative-pg/postgresql:17

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

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

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

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

linux/amd64 ghcr.io681.17MB2026-02-28 15:51
10