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

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-08-14 03:17:31  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2026-08-14 03:17:31  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2026-08-14 03:17:31  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2026-08-14 03:17:31  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2026-08-14 03:17:31  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2026-08-14 03:17:31  16.89KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2026-08-14 03:17:31  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql]
                        
# 2026-08-14 03:17:31  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/18/docker
                        
# 2026-08-14 03:17:31  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2026-08-14 03:17:31  65.26KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; 	sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; 	grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample # buildkit
                        
# 2026-08-14 03:17:31  293.22MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; 	echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; 	mkdir -p /usr/src/postgresql; 	tar 		--extract 		--file postgresql.tar.bz2 		--directory /usr/src/postgresql 		--strip-components 1 	; 	rm postgresql.tar.bz2; 		apk add --no-cache --virtual .build-deps 		$DOCKER_PG_LLVM_DEPS 		bison 		coreutils 		dpkg-dev dpkg 		flex 		g++ 		gcc 		krb5-dev 		libc-dev 		libedit-dev 		libxml2-dev 		libxslt-dev 		linux-headers 		make 		openldap-dev 		openssl-dev 		perl-dev 		perl-ipc-run 		perl-utils 		python3-dev 		tcl-dev 		util-linux-dev 		zlib-dev 		icu-dev 		lz4-dev 		zstd-dev 		curl-dev 		liburing-dev 	; 		cd /usr/src/postgresql; 	awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; 	grep '/var/run/postgresql' src/include/pg_config_manual.h.new; 	mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; 	gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; 		export LLVM_CONFIG="/usr/lib/llvm21/bin/llvm-config"; 	export CLANG=clang-21; 		./configure 		--enable-option-checking=fatal 		--build="$gnuArch" 		--enable-integer-datetimes 		--enable-tap-tests 		--disable-rpath 		--with-uuid=e2fs 		--with-pgport=5432 		--with-system-tzdata=/usr/share/zoneinfo 		--prefix=/usr/local 		--with-includes=/usr/local/include 		--with-libraries=/usr/local/lib 		--with-gssapi 		--with-icu 		--with-ldap 		--with-libcurl 		--with-liburing 		--with-libxml 		--with-libxslt 		--with-llvm 		--with-lz4 		--with-openssl 		--with-perl 		--with-python 		--with-tcl 		--with-zstd 	; 	make -j "$(nproc)" world-bin; 	make install-world-bin; 	make -C contrib install; 		runDeps="$( 		scanelf --needed --nobanner --format '%n#p' --recursive /usr/local 			| tr ',' '\n' 			| sort -u 			| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' 			| grep -v -e perl -e python -e tcl 	)"; 	apk add --no-cache --virtual .postgresql-rundeps 		$runDeps 		bash 		tzdata 		zstd 		icu-data-full 		$([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') 	; 	apk del --no-network .build-deps; 	cd /; 	rm -rf 		/usr/src/postgresql 		/usr/local/share/doc 		/usr/local/share/man 	; 		postgres --version # buildkit
                        
# 2026-08-14 03:15:02  0.00B 设置环境变量 DOCKER_PG_LLVM_DEPS
ENV DOCKER_PG_LLVM_DEPS=llvm21-dev 		clang21
                        
# 2026-08-14 03:15:02  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=555610c24d53e4316da5b7d3fc25c279d96856d5e0e23ee308c328c5fa881d9f
                        
# 2026-08-14 03:15:02  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=18.6
                        
# 2026-08-14 03:15:02  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=18
                        
# 2026-08-14 03:15:02  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2026-08-14 03:15:02  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2026-08-14 03:15:02  1.97MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apk add --no-cache --virtual .gosu-deps 		ca-certificates 		dpkg 		gnupg 	; 		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; 		apk del --no-network .gosu-deps; 		chmod +x /usr/local/bin/gosu; 	gosu --version; 	gosu nobody true # buildkit
                        
# 2026-08-14 03:15:02  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.19
                        
# 2026-08-14 03:14:59  3.06KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	addgroup -g 70 -S postgres; 	adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; 	install --verbose --directory --owner postgres --group postgres --mode 1777 /var/lib/postgresql # buildkit
                        
# 2026-06-16 08:01:29  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-06-16 08:01:29  8.42MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.24.1-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:b07129cc272f688c98f5b343138a0a52fa45b3d82f50d7a53ff441330624cd2e",
    "RepoTags": [
        "postgres:18.6-alpine",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:18.6-alpine"
    ],
    "RepoDigests": [
        "postgres@sha256:d3e1620b530c944afa6e887d22eb899824da68e19c52024bf98f5220c88a65b2",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres@sha256:a9179d97e3070f520dcf323675c7d34598066ff242ebd0105d9dfbee1b797d17"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-08-13T19:17:31.951845817Z",
    "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",
            "GOSU_VERSION=1.19",
            "LANG=en_US.utf8",
            "PG_MAJOR=18",
            "PG_VERSION=18.6",
            "PG_SHA256=555610c24d53e4316da5b7d3fc25c279d96856d5e0e23ee308c328c5fa881d9f",
            "DOCKER_PG_LLVM_DEPS=llvm21-dev \t\tclang21",
            "PGDATA=/var/lib/postgresql/18/docker"
        ],
        "Cmd": [
            "postgres"
        ],
        "Image": "",
        "Volumes": {
            "/var/lib/postgresql": {}
        },
        "WorkingDir": "/",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": null,
        "StopSignal": "SIGINT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 303696065,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/1fe66ef1a168ba34ec3f59c769d27deec4f11ac8739c29a18a146006735c01b0/diff:/var/lib/docker/overlay2/ccb32149064099726ba890c7a133fae7561d29575ccdc774cd7a9d4c00584b1d/diff:/var/lib/docker/overlay2/6b2546a111e16c43529a01c4dbfb21918f553678d109f3a6e7a967fa2963d00b/diff:/var/lib/docker/overlay2/7323726f1391e19e86754157506b1a7a0db2a70a054b58c44ab4058ed1278d28/diff:/var/lib/docker/overlay2/ac74bbc53f6a11b04e238d627ee8f1e861dfe0d619b4706ecf5a56d0def37cb6/diff:/var/lib/docker/overlay2/68a3853b9d462c1c4bdd11cb3e17889dbbc52c1f639c666e9dbc6c8b904f53d2/diff:/var/lib/docker/overlay2/09c8a9c2b22c1a39b3ca8164aa0ad929034b6be264cfa89c45518a817cd3ee9d/diff:/var/lib/docker/overlay2/d51bd9f442769618005c9be653661c047116bf4ebe32b04db2ad4ca7bebb792d/diff",
            "MergedDir": "/var/lib/docker/overlay2/55da23aec7e61f76c4924a580a8dd90748110c54c48a4e2ef968ac8cc252b80e/merged",
            "UpperDir": "/var/lib/docker/overlay2/55da23aec7e61f76c4924a580a8dd90748110c54c48a4e2ef968ac8cc252b80e/diff",
            "WorkDir": "/var/lib/docker/overlay2/55da23aec7e61f76c4924a580a8dd90748110c54c48a4e2ef968ac8cc252b80e/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:34884abbe92863fce933ed7c39c0e045631af0ed86d5cc0dfbdf9fdca426ce3c",
            "sha256:07676fb9d94c90f2c761d186e91e1f2fe8e397364a9564e550fc90b0d81a5fc1",
            "sha256:b5c2133735e13a7f1b9cf5999cd4f2554dc74f4bd856e0c8006360115f014a58",
            "sha256:293e3cdf997ef3cbe18c0879ec4d5b05fa9217758536bf9308e313054c90547b",
            "sha256:d4f8a7a33d0921e1768e5a818a7d71dea297cea1d981dfdd2c5b0b950aa02d3b",
            "sha256:6695fdc9ef77ba4901fe1b039a8923c923fe4b876c2181ad3e3110f32236fa78",
            "sha256:b949535f4c6a4dad0f5f6a0b2bd82da24d2ab69282672f30541701324cb979e8",
            "sha256:f76414dbfc28ccc7ca8e8410bc7f433f2f9eaa2762d9f0d313355764874a5452",
            "sha256:c967636b309773df9e240c600f94a6eac261b04dec293b53102ee507c641a731"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-09-08T10:31:32.896706733+08:00"
    }
}

更多版本

docker.io/postgres:10-alpine

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

docker.io/postgres:10.23-alpine3.16

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

docker.io/postgres:10.5

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

docker.io/postgres:11

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

docker.io/postgres:11-alpine

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

docker.io/postgres:11.22-alpine

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

docker.io/postgres:11.4

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

docker.io/postgres:11.9

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

docker.io/postgres:12

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

docker.io/postgres:12-alpine

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

docker.io/postgres:12.11

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

docker.io/postgres:12.19-alpine3.20

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

docker.io/postgres:12.19-bullseye

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

docker.io/postgres:12.2

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

docker.io/postgres:12.22-alpine3.21

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

docker.io/postgres:12.3

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

docker.io/postgres:12.3-alpine

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

docker.io/postgres:12.3-alpine

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

docker.io/postgres:12.4

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

docker.io/postgres:13

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

docker.io/postgres:13-alpine

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

docker.io/postgres:13.14

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

docker.io/postgres:13.17

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

docker.io/postgres:13.20

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

docker.io/postgres:13.21

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

docker.io/postgres:13.22

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

docker.io/postgres:13.23

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

docker.io/postgres:13.8

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

docker.io/postgres:14

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

docker.io/postgres:14

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

docker.io/postgres:14-alpine

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

docker.io/postgres:14-alpine

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

docker.io/postgres:14.1

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

docker.io/postgres:14.1

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

docker.io/postgres:14.1-bullseye

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

docker.io/postgres:14.11

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

docker.io/postgres:14.12

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

docker.io/postgres:14.15

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

docker.io/postgres:14.17-bookworm

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

docker.io/postgres:14.18

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

docker.io/postgres:14.19

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

docker.io/postgres:14.19-bookworm

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

docker.io/postgres:14.2

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

docker.io/postgres:14.2

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

docker.io/postgres:14.2-alpine

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

docker.io/postgres:14.23

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

docker.io/postgres:14.23-bookworm

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

docker.io/postgres:14.5

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

docker.io/postgres:14.5

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

docker.io/postgres:14.5-alpine

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

docker.io/postgres:14.7

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

docker.io/postgres:14.7-alpine3.17

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

docker.io/postgres:14.9

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

docker.io/postgres:15

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

docker.io/postgres:15-alpine

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

docker.io/postgres:15-alpine

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

docker.io/postgres:15-alpine3.22

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

docker.io/postgres:15-alpine3.22

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

docker.io/postgres:15-bullseye

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

docker.io/postgres:15.0-bullseye

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

docker.io/postgres:15.12

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

docker.io/postgres:15.13

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

docker.io/postgres:15.14

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

docker.io/postgres:15.14-alpine3.21

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

docker.io/postgres:15.14-alpine3.22

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

docker.io/postgres:15.17

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

docker.io/postgres:15.18

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

docker.io/postgres:15.19-alpine

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

docker.io/postgres:15.19-trixie

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

docker.io/postgres:15.19-trixie

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

docker.io/postgres:15.2-alpine

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

docker.io/postgres:15.2-alpine

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

docker.io/postgres:15.3

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

docker.io/postgres:15.3

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

docker.io/postgres:15.3-alpine

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

docker.io/postgres:15.4

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

docker.io/postgres:15.4-alpine

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

docker.io/postgres:15.6

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

docker.io/postgres:15.6

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

docker.io/postgres:15.6-alpine

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

docker.io/postgres:15.6-bookworm

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

docker.io/postgres:15.6-bookworm

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

docker.io/postgres:15.7-alpine

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

docker.io/postgres:15.7-alpine

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

docker.io/postgres:16

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

docker.io/postgres:16

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

docker.io/postgres:16-alpine

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

docker.io/postgres:16-alpine

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

docker.io/postgres:16.1

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

docker.io/postgres:16.10

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

docker.io/postgres:16.10-alpine3.21

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

docker.io/postgres:16.10-bookworm

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

docker.io/postgres:16.11

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

docker.io/postgres:16.13

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

docker.io/postgres:16.13-alpine3.22

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

docker.io/postgres:16.13-alpine3.22

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

docker.io/postgres:16.13-alpine3.23

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

docker.io/postgres:16.14-alpine

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

docker.io/postgres:16.14-alpine3.24

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

docker.io/postgres:16.15-alpine

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