logo
docker.io/postgres:15.19-trixie
linux/amd64 docker.io 已验证 · Postgres
PostgreSQL 是一个开源的关系数据库管理系统(RDBMS),提供了传输控制协议(TCP)上的 PostgreSQL 服务。该镜像支持多种操作系统和存储引擎,方便开发、测试和部署应用程序。
139
浏览次数
444.71MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie
源镜像
docker.io/postgres:15.19-trixie
镜像ID
sha256:24cae11bc708f664274a68c085f2359a805ecfae2cd031199f4ebfaffe81bb10
镜像 TAG
15.19-trixie
镜像大小
444.71MB
平台架构
linux/amd64
镜像源
docker.io
CMD
postgres
启动入口
docker-entrypoint.sh
工作目录
OS/平台
linux/amd64
镜像创建
2026-08-13T19:16:47.138809453Z
同步时间
2026-08-17 11:08
浏览量
139 次
贡献者
🔌 开放端口 1
5432/tcp
📁 目录挂载 1
 /var/lib/postgresql/data
⚙️ 环境变量 6
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/15/bin 0
GOSU_VERSION=1.19 1
LANG=en_US.utf8 2
PG_MAJOR=15 3
PG_VERSION=15.19-1.pgdg13+2 4
PGDATA=/var/lib/postgresql/data 5
🛡️ 镜像安全扫描
debian 13.6 Trivy 2026-08-17 11:08 查看完整报告
129
低危 LOW
118
中危 MEDIUM
59
高危 HIGH
18
严重 CRITICAL
受影响目标 (3)
docker.io/postgres:15.19-trixie (debian 13.6) debian usr/local/bin/gosu gobinary /etc/ssl/private/ssl-cert-snakeoil.key

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie  docker.io/postgres:15.19-trixie

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie  docker.io/postgres:15.19-trixie

Shell快速替换命令

sed -i 's#postgres:15.19-trixie#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie  docker.io/postgres:15.19-trixie'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie  docker.io/postgres:15.19-trixie'

镜像构建历史


# 2026-08-14 03:16:47  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2026-08-14 03:16:47  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2026-08-14 03:16:47  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2026-08-14 03:16:47  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2026-08-14 03:16:47  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2026-08-14 03:16:47  16.89KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2026-08-14 03:16:47  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql/data]
                        
# 2026-08-14 03:16:47  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
                        
# 2026-08-14 03:16:46  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/data
                        
# 2026-08-14 03:16:46  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2026-08-14 03:16:46  60.70KB 执行命令并创建新的镜像层
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
                        
# 2026-08-14 03:16:46  317.53MB 执行命令并创建新的镜像层
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 trixie-pgdg main $PG_MAJOR"; 	case "$dpkgArch" in 		amd64 | arm64 | loong64 | 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
                        
# 2026-08-14 03:15:11  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=15.19-1.pgdg13+2
                        
# 2026-08-14 03:15:11  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/15/bin
                        
# 2026-08-14 03:15:11  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=15
                        
# 2026-08-14 03:15:11  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
                        
# 2026-08-14 03:15:10  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2026-08-14 03:15:10  3.38MB 执行命令并创建新的镜像层
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
                        
# 2026-08-14 03:15:07  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2026-08-14 03:15:07  25.59MB 执行命令并创建新的镜像层
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
                        
# 2026-08-14 03:15:03  3.63MB 执行命令并创建新的镜像层
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
                        
# 2026-08-14 03:15:03  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.19
                        
# 2026-08-14 03:14:56  15.87MB 执行命令并创建新的镜像层
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
                        
# 2026-08-14 03:14:51  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
                        
# 2026-08-03 08:00:00  78.62MB 
# debian.sh --arch 'amd64' out/ 'trixie' '@1785715200'
                        
                    

镜像信息

{
    "Id": "sha256:24cae11bc708f664274a68c085f2359a805ecfae2cd031199f4ebfaffe81bb10",
    "RepoTags": [
        "postgres:15.19-trixie",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.19-trixie"
    ],
    "RepoDigests": [
        "postgres@sha256:5f72c7b5bd616308ccfd2e74d6be16fb06364e5eecbb815fe9dc6ab9761d2111",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres@sha256:45e24a31a2752f46865cfc45a8bc8220e60cac0008f32eb219ec308bc491e681"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-08-13T19:16:47.138809453Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "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.19",
            "LANG=en_US.utf8",
            "PG_MAJOR=15",
            "PG_VERSION=15.19-1.pgdg13+2",
            "PGDATA=/var/lib/postgresql/data"
        ],
        "Cmd": [
            "postgres"
        ],
        "Image": "",
        "Volumes": {
            "/var/lib/postgresql/data": {}
        },
        "WorkingDir": "",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": null,
        "StopSignal": "SIGINT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 444705880,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/f4d3b465a72a551bc33242402b831ad44a85de5ba2cbf26651e9d801a2faa798/diff:/var/lib/docker/overlay2/6489a20692fac4694b91461acafa2a6d97f356cc5bd4ef0906b9a45cef19b89e/diff:/var/lib/docker/overlay2/7759d2a1d73eeaf5bf5d1c4761cb51c8a102cfe1cc3d1541c5b31bf67ba7f129/diff:/var/lib/docker/overlay2/7517f894f595448be07773c89651bde33a3ac3e1671e8c778be00462e669c3b6/diff:/var/lib/docker/overlay2/eeae03202ea0296fcece244495673b96c5871c05333bdb2aa4341450108d4c76/diff:/var/lib/docker/overlay2/9fd8b7193f143058fe58ff438e5fe9212e75bdb52044f5827ea7fc3d5779e404/diff:/var/lib/docker/overlay2/7a122b52e890008daf8f4b6a244d0c86ae8c8c64eb66578950b01e103cdab83c/diff:/var/lib/docker/overlay2/46ff186fb56e39901fcb97d60de0a3029758391b75759f6178bca399661bb54a/diff:/var/lib/docker/overlay2/8d4618ef15aebc0b16a1aeb904baf0c58cca4d06696fb18a8a2572c69fd483b0/diff:/var/lib/docker/overlay2/823afe8f31948bc8083c15efdf302c0fc05767e7ded35156f2c304e6c4694524/diff:/var/lib/docker/overlay2/8c63d02a48e65ce806c1478a3c406ef9ad10fdc767c9a83f145fffa91f6826db/diff:/var/lib/docker/overlay2/3bf82e8a4341b2d2ccb7baf88ce4efee0c8b5d5ab5ac429a41ec1b11463f01ad/diff:/var/lib/docker/overlay2/faff4113146787f7bb5a6ce2a00d7d8484098129ae09c7d0ce5acd028427696c/diff",
            "MergedDir": "/var/lib/docker/overlay2/ca11f0e388302827794cd13e573614825f304da40544d7f65fcf2292e7a62f4c/merged",
            "UpperDir": "/var/lib/docker/overlay2/ca11f0e388302827794cd13e573614825f304da40544d7f65fcf2292e7a62f4c/diff",
            "WorkDir": "/var/lib/docker/overlay2/ca11f0e388302827794cd13e573614825f304da40544d7f65fcf2292e7a62f4c/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:6f94328331290cbd81edab450664d42da7b64c191416c9346cd5d28c84f76035",
            "sha256:73a56b7b973fc86ede29bd2c7fdc6e26dbd5555efcc362c69254f362846d7103",
            "sha256:e0f359e32401d3d946a8034961978c2a15e949f37dfdc65f69ae6668b141f7fe",
            "sha256:efc4c81cb0ef62c08753d9afe487bf4d54535cf776b7b35691fef0ad14a49d8d",
            "sha256:ff8f691121eb73a73308716af733efe2c06f55b50862122d436469b44276a4bc",
            "sha256:d1d7db311d60279df560e9e694fb042b4a137f546f27dacd111ef41b3d53dcfe",
            "sha256:3e3b77db170f808653773984a2757aab38b3c9751d649d4a8e49064c0b93f9d0",
            "sha256:b2bd30210c174b4a66ce649ae67bdcca8cf813554464af6f765c1dd16cc2d1b1",
            "sha256:f2a644385f9cea4a01dad91792838e4c4b309636e744a9785f5ec90beb3c7a06",
            "sha256:6e797545cbdbe3f3259bf0753a796fbb471162db9d6065ea71a2779b3a2cd2ed",
            "sha256:5989439f4a6e8424b9b898b93db67e9f8f186e952b3b76b66599cffc1009ade1",
            "sha256:d73d67e8a246bc0d45e76368a601fcaee80ce0744dd7528c256d3c61df14600c",
            "sha256:84433d515a15820f67e8c49df7fe2d29d7304aaa2eeae6fc0d4df879339aaaf7",
            "sha256:25cdc4478d6152fdfb20cbef14d240ee28439e44c39dcca6eabe4e0e75f17e24"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-08-17T11:08:35.977934713+08:00"
    }
}

更多版本

docker.io/postgres:10-alpine

linux/amd64 docker.io79.09MB2024-10-15 20:03
1219

docker.io/postgres:10.23-alpine3.16

linux/amd64 docker.io79.09MB2025-05-09 03:15
731

docker.io/postgres:10.5

linux/arm64 docker.io218.69MB2026-08-18 16:22
71

docker.io/postgres:11

linux/amd64 docker.io284.46MB2024-11-27 14:14
909

docker.io/postgres:11-alpine

linux/amd64 docker.io231.90MB2025-07-23 14:46
612

docker.io/postgres:11.22-alpine

linux/amd64 docker.io231.90MB2025-03-20 17:24
710

docker.io/postgres:11.4

linux/amd64 docker.io312.47MB2025-01-20 14:59
683

docker.io/postgres:11.9

linux/amd64 docker.io282.36MB2025-04-24 17:11
705

docker.io/postgres:12

linux/amd64 docker.io418.59MB2024-11-09 11:00
1255

docker.io/postgres:12-alpine

linux/amd64 docker.io266.44MB2025-07-07 14:56
766

docker.io/postgres:12.11

linux/amd64 docker.io372.64MB2025-04-18 17:35
558

docker.io/postgres:12.19-alpine3.20

linux/amd64 docker.io236.26MB2024-06-28 17:32
930

docker.io/postgres:12.19-bullseye

linux/amd64 docker.io386.93MB2024-06-16 13:12
1251

docker.io/postgres:12.2

linux/amd64 docker.io313.75MB2024-09-13 17:25
1030

docker.io/postgres:12.22-alpine3.21

linux/amd64 docker.io266.44MB2025-05-22 12:59
690

docker.io/postgres:12.3

linux/amd64 docker.io313.02MB2024-11-07 08:48
789

docker.io/postgres:12.3-alpine

linux/amd64 docker.io157.31MB2025-06-12 09:18
748

docker.io/postgres:12.3-alpine

linux/arm64 docker.io155.06MB2026-04-15 17:15
174

docker.io/postgres:12.4

linux/arm64 docker.io299.56MB2024-12-19 18:46
731

docker.io/postgres:13

linux/amd64 docker.io423.34MB2025-03-29 23:54
1255

docker.io/postgres:13-alpine

linux/amd64 docker.io267.85MB2025-01-03 14:51
1167

docker.io/postgres:13.14

linux/amd64 docker.io419.14MB2024-10-15 10:01
1302

docker.io/postgres:13.17

linux/amd64 docker.io419.45MB2025-03-10 16:32
761

docker.io/postgres:13.20

linux/amd64 docker.io423.33MB2025-03-11 17:26
840

docker.io/postgres:13.21

linux/amd64 docker.io423.40MB2025-07-04 17:17
647

docker.io/postgres:13.22

linux/amd64 docker.io439.21MB2025-08-16 18:18
696

docker.io/postgres:13.23

linux/arm64 docker.io461.15MB2026-05-07 10:29
180

docker.io/postgres:13.8

linux/arm64 docker.io354.23MB2024-07-24 23:02
1433

docker.io/postgres:14

linux/amd64 docker.io441.90MB2025-09-08 14:53
566

docker.io/postgres:14

linux/arm64 docker.io444.02MB2025-01-27 12:55
824

docker.io/postgres:14-alpine

linux/amd64 docker.io241.40MB2024-07-03 23:43
1847

docker.io/postgres:14-alpine

linux/arm64 docker.io268.16MB2026-05-19 15:15
152

docker.io/postgres:14.1

linux/amd64 docker.io374.04MB2026-01-14 15:44
380

docker.io/postgres:14.1

linux/arm64 docker.io353.56MB2026-01-14 15:41
229

docker.io/postgres:14.1-bullseye

linux/amd64 docker.io374.04MB2025-04-25 12:40
738

docker.io/postgres:14.11

linux/amd64 docker.io421.97MB2024-11-05 19:40
752

docker.io/postgres:14.12

linux/amd64 docker.io421.93MB2024-10-14 14:43
1095

docker.io/postgres:14.15

linux/amd64 docker.io422.30MB2025-02-04 11:33
696

docker.io/postgres:14.17-bookworm

linux/amd64 docker.io426.07MB2025-03-04 10:33
786

docker.io/postgres:14.18

linux/amd64 docker.io426.14MB2025-07-28 14:46
584

docker.io/postgres:14.19

linux/amd64 docker.io441.90MB2025-08-29 14:38
505

docker.io/postgres:14.19-bookworm

linux/amd64 docker.io425.20MB2025-12-02 16:28
343

docker.io/postgres:14.2

linux/amd64 docker.io376.10MB2026-01-14 15:47
388

docker.io/postgres:14.2

linux/arm64 docker.io355.37MB2026-01-14 15:50
247

docker.io/postgres:14.2-alpine

linux/amd64 docker.io210.71MB2024-08-15 15:18
1197

docker.io/postgres:14.23

linux/amd64 docker.io441.15MB2026-05-18 16:03
252

docker.io/postgres:14.23-bookworm

linux/amd64 docker.io425.44MB2026-06-03 16:33
209

docker.io/postgres:14.5

linux/amd64 docker.io376.37MB2025-09-02 16:18
672

docker.io/postgres:14.5

linux/arm64 docker.io357.18MB2025-04-08 20:02
664

docker.io/postgres:14.5-alpine

linux/amd64 docker.io216.44MB2026-03-04 15:33
354

docker.io/postgres:14.7

linux/amd64 docker.io376.54MB2025-10-22 11:31
384

docker.io/postgres:14.7-alpine3.17

linux/amd64 docker.io241.71MB2024-10-29 17:41
1119

docker.io/postgres:14.9

linux/amd64 docker.io408.06MB2025-08-29 14:42
500

docker.io/postgres:15

linux/amd64 docker.io429.58MB2025-08-04 10:18
1162

docker.io/postgres:15-alpine

linux/amd64 docker.io248.31MB2024-06-19 17:31
8092

docker.io/postgres:15-alpine

linux/arm64 docker.io250.04MB2024-07-08 15:04
4382

docker.io/postgres:15-alpine3.22

linux/amd64 docker.io273.16MB2026-02-12 10:14
791

docker.io/postgres:15-alpine3.22

linux/arm64 docker.io265.13MB2026-02-28 10:26
303

docker.io/postgres:15-bullseye

linux/amd64 docker.io418.13MB2025-02-26 16:42
799

docker.io/postgres:15.0-bullseye

linux/amd64 docker.io377.37MB2025-11-27 16:46
344

docker.io/postgres:15.12

linux/amd64 docker.io429.51MB2025-03-17 11:09
620

docker.io/postgres:15.13

linux/amd64 docker.io429.57MB2025-05-22 16:09
799

docker.io/postgres:15.14

linux/amd64 docker.io444.39MB2025-11-12 17:09
364

docker.io/postgres:15.14-alpine3.21

linux/amd64 docker.io272.57MB2025-10-13 14:15
329

docker.io/postgres:15.14-alpine3.22

linux/amd64 docker.io279.18MB2025-09-09 14:15
370

docker.io/postgres:15.17

linux/arm64 docker.io467.24MB2026-03-05 10:43
215

docker.io/postgres:15.18

linux/amd64 docker.io444.61MB2026-07-09 15:15
293

docker.io/postgres:15.19-alpine

linux/amd64 docker.io292.08MB2026-08-26 09:53
94

docker.io/postgres:15.19-trixie

linux/amd64 docker.io444.71MB2026-08-17 11:08
138

docker.io/postgres:15.19-trixie

linux/arm64 docker.io467.41MB2026-08-31 16:11
56

docker.io/postgres:15.2-alpine

linux/amd64 docker.io243.09MB2025-03-19 10:17
965

docker.io/postgres:15.2-alpine

linux/arm64 docker.io241.47MB2025-04-27 09:20
633

docker.io/postgres:15.3

linux/amd64 docker.io411.84MB2025-03-03 11:27
574

docker.io/postgres:15.3

linux/arm64 docker.io433.16MB2024-08-01 16:55
1635

docker.io/postgres:15.3-alpine

linux/amd64 docker.io236.75MB2025-03-03 11:32
703

docker.io/postgres:15.4

linux/amd64 docker.io410.61MB2024-07-18 12:35
2065

docker.io/postgres:15.4-alpine

linux/amd64 docker.io237.40MB2025-07-19 09:47
635

docker.io/postgres:15.6

linux/amd64 docker.io425.45MB2025-01-03 13:48
1111

docker.io/postgres:15.6

linux/arm64 docker.io447.23MB2025-03-13 15:13
781

docker.io/postgres:15.6-alpine

linux/amd64 docker.io240.41MB2026-07-09 15:22
167

docker.io/postgres:15.6-bookworm

linux/amd64 docker.io425.45MB2025-03-20 15:17
599

docker.io/postgres:15.6-bookworm

linux/arm64 docker.io447.23MB2025-03-19 14:48
540

docker.io/postgres:15.7-alpine

linux/amd64 docker.io242.81MB2026-09-14 15:52
47

docker.io/postgres:15.7-alpine

linux/arm64 docker.io250.04MB2026-04-03 14:42
289

docker.io/postgres:16

linux/amd64 docker.io431.58MB2024-07-26 18:25
3177

docker.io/postgres:16

linux/arm64 docker.io456.79MB2025-05-27 15:50
1448

docker.io/postgres:16-alpine

linux/amd64 docker.io250.73MB2024-12-03 21:04
3470

docker.io/postgres:16-alpine

linux/arm64 docker.io271.54MB2026-02-12 19:07
563

docker.io/postgres:16.1

linux/amd64 docker.io425.16MB2025-04-19 14:27
789

docker.io/postgres:16.10

linux/amd64 docker.io451.17MB2025-09-23 10:23
454

docker.io/postgres:16.10-alpine3.21

linux/amd64 docker.io275.40MB2025-08-15 11:48
634

docker.io/postgres:16.10-bookworm

linux/amd64 docker.io435.03MB2025-12-26 10:30
470

docker.io/postgres:16.11

linux/amd64 docker.io450.80MB2026-01-08 15:00
511

docker.io/postgres:16.13

linux/arm64 docker.io473.57MB2026-04-03 17:23
295

docker.io/postgres:16.13-alpine3.22

linux/amd64 docker.io275.45MB2026-05-07 09:10
239

docker.io/postgres:16.13-alpine3.22

linux/arm64 docker.io267.08MB2026-04-21 17:20
175

docker.io/postgres:16.13-alpine3.23

linux/amd64 docker.io276.06MB2026-04-20 18:08
358

docker.io/postgres:16.14-alpine

linux/amd64 docker.io276.20MB2026-05-18 11:45
347

docker.io/postgres:16.14-alpine3.24

linux/amd64 docker.io294.21MB2026-07-31 18:39
150

docker.io/postgres:16.15-alpine

linux/amd64 docker.io294.28MB2026-08-19 10:44
117
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×