docker.io/postgres:18.1-alpine linux/amd64

docker.io/postgres:18.1-alpine - 国内下载镜像源 浏览次数:10 安全受验证的发布者-Postgres
PostgreSQL 是一个开源的关系数据库管理系统(RDBMS),提供了传输控制协议(TCP)上的 PostgreSQL 服务。该镜像支持多种操作系统和存储引擎,方便开发、测试和部署应用程序。
源镜像 docker.io/postgres:18.1-alpine
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:18.1-alpine
镜像ID sha256:8b9a5682d571fa93a90e4fabd8821c43d887b70fbe7b2f4a80bb57799ed6350e
镜像TAG 18.1-alpine
大小 280.99MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 10 次
贡献者
镜像创建 2025-12-18T00:39:07.971730974Z
同步时间 2025-12-19 22:57
更新时间 2025-12-20 01:25
开放端口
5432/tcp
目录挂载
/var/lib/postgresql
环境变量
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.1 PG_SHA256=ff86675c336c46e98ac991ebb306d1b67621ece1d06787beaade312c2c915d54 DOCKER_PG_LLVM_DEPS=llvm19-dev clang19 PGDATA=/var/lib/postgresql/18/docker

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-12-18 08:39:07  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2025-12-18 08:39:07  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2025-12-18 08:39:07  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2025-12-18 08:39:07  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2025-12-18 08:39:07  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2025-12-18 08:39:07  16.36KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2025-12-18 08:39:07  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql]
                        
# 2025-12-18 08:39:07  1.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -svT . /var/lib/postgresql/data # https://github.com/docker-library/postgres/pull/1259#issuecomment-2215477494 # buildkit
                        
# 2025-12-18 08:39:07  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/18/docker
                        
# 2025-12-18 08:39:07  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2025-12-18 08:39:07  64.58KB 执行命令并创建新的镜像层
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
                        
# 2025-12-18 08:39:07  270.45MB 执行命令并创建新的镜像层
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 		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/llvm19/bin/llvm-config"; 	export CLANG=clang-19; 		./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-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
                        
# 2025-12-18 08:36:52  0.00B 设置环境变量 DOCKER_PG_LLVM_DEPS
ENV DOCKER_PG_LLVM_DEPS=llvm19-dev 		clang19
                        
# 2025-12-18 08:36:52  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=ff86675c336c46e98ac991ebb306d1b67621ece1d06787beaade312c2c915d54
                        
# 2025-12-18 08:36:52  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=18.1
                        
# 2025-12-18 08:36:52  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=18
                        
# 2025-12-18 08:36:52  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2025-12-18 08:36:52  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2025-12-18 08:36:52  2.01MB 执行命令并创建新的镜像层
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
                        
# 2025-12-18 08:36:52  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.19
                        
# 2025-12-18 08:36:49  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
                        
# 2025-12-18 08:12:29  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-12-18 08:12:29  8.44MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.23.2-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:8b9a5682d571fa93a90e4fabd8821c43d887b70fbe7b2f4a80bb57799ed6350e",
    "RepoTags": [
        "postgres:18.1-alpine",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:18.1-alpine"
    ],
    "RepoDigests": [
        "postgres@sha256:b40d931bd0e7ce6eecc59a5a6ac3b3c04a01e559750e73e7086b6dbd7f8bf545",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres@sha256:8c123f86401a22c632906d31ff483bf8bd1ab398d1fe0e4558125a4f8c143413"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-12-18T00:39:07.971730974Z",
    "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.1",
            "PG_SHA256=ff86675c336c46e98ac991ebb306d1b67621ece1d06787beaade312c2c915d54",
            "DOCKER_PG_LLVM_DEPS=llvm19-dev \t\tclang19",
            "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": 280985516,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/5a1fb6fdbbbabf94929357aacf21b12c20c907937ff2632af5bcbdfe1a0d239c/diff:/var/lib/docker/overlay2/76fa40eeaa1bcd8aa14e83150ad929da1d62aaf043398d8523470bff0f3fedad/diff:/var/lib/docker/overlay2/746e542571bf96d8ab74724bd8c473317883640d51d1c0046b38f8d1611af492/diff:/var/lib/docker/overlay2/801b55c470753b74c9d94ce3034396812a38f6e90dfd0576a66dfe6c2271e7f4/diff:/var/lib/docker/overlay2/2900d66c95f637a5f2456e5c5a3e12af605ba07af61a2e068975637bed741ed9/diff:/var/lib/docker/overlay2/a6124f849833a892e2d2581f600c522e83a57572bfc32b7a6b52b57f21d8b17b/diff:/var/lib/docker/overlay2/d336c30caaecd578d9b0c863dacff93e7a3cdc55d06acb647ee4e2efa025e321/diff:/var/lib/docker/overlay2/5cf525ee5a8817b1fd9a7720732fb9dcd23d7e7bb18c5f32fd563bc0331c33ae/diff:/var/lib/docker/overlay2/fdc5e5689601dc92f6e20c665524fba39f8cab962b793bba8d800e1bb195a0a2/diff",
            "MergedDir": "/var/lib/docker/overlay2/9b76863a10b7054798b2f18031e8383f34973d8bb777c26af324f9b6d57d0697/merged",
            "UpperDir": "/var/lib/docker/overlay2/9b76863a10b7054798b2f18031e8383f34973d8bb777c26af324f9b6d57d0697/diff",
            "WorkDir": "/var/lib/docker/overlay2/9b76863a10b7054798b2f18031e8383f34973d8bb777c26af324f9b6d57d0697/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:7bb20cf5ef67526cb843d264145241ce4dde09a337b5be1be42ba464de9a672d",
            "sha256:15c70e01db77e69f37962ee2a8432fab4967768fbd5657eb57ac5241e175396a",
            "sha256:b221b2c4406abff4a84a6608b0cd83c776a3e7427b904c4b71c5f4d58d0d1854",
            "sha256:3df0be73046f0a3cd80b430d527fff5384cefa56629517ff456526c7d68afc53",
            "sha256:87c71e8949c028a847c895a89b13c7e2322e9ae0cbf98cb3ba0f1188117059ab",
            "sha256:3bcd631054d7d9bde30ff1d98d9990a51ed39843282e85f5a8bc6734df0b58dd",
            "sha256:d0c08308ff491771820c512b06497be1c60115da0b950fc0757931c12452aa20",
            "sha256:6126ced504f6b05c2d17f75a7e63b1d386663f847218abb5b007500746282452",
            "sha256:34266fc551aadbb32bec47d0efb6a8bb991a4026324953d3f15299c9653c4413",
            "sha256:2098327fcf6f0479352adb64587f72d5a0b6dc80038e02bf4db5d49d436f93a9"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-12-19T22:57:37.796411548+08:00"
    }
}

更多版本

docker.io/postgres:12.19-bullseye

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

docker.io/postgres:15-alpine

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

docker.io/postgres:12.19-alpine3.20

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

docker.io/postgres:16.3-alpine3.20

linux/amd64 docker.io244.93MB2024-06-28 17:32
1003

docker.io/postgres:14-alpine

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

docker.io/postgres:15-alpine

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

docker.io/postgres:15.4

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

docker.io/postgres:9.6.21-alpine

linux/arm64 docker.io35.93MB2024-07-24 11:50
655

docker.io/postgres:13.8

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

docker.io/postgres:16

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

docker.io/postgres:9.6.24

linux/amd64 docker.io199.69MB2024-08-01 16:37
1141

docker.io/postgres:15.3

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

docker.io/postgres:16.3

linux/amd64 docker.io431.58MB2024-08-02 14:29
758

docker.io/postgres:16.3-bookworm

linux/amd64 docker.io431.58MB2024-08-08 17:41
603

docker.io/postgres:14.2-alpine

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

docker.io/postgres:16.4

linux/amd64 docker.io431.68MB2024-08-27 17:28
1033

docker.io/postgres:12.2

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

docker.io/postgres:17

linux/amd64 docker.io434.31MB2024-10-01 13:14
2164

docker.io/postgres:17-alpine

linux/amd64 docker.io248.16MB2024-10-03 21:57
1219

docker.io/postgres:14.12

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

docker.io/postgres:13.14

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

docker.io/postgres:10-alpine

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

docker.io/postgres:alpine

linux/amd64 docker.io248.16MB2024-10-24 11:56
1066

docker.io/postgres:14.7-alpine3.17

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

docker.io/postgres:14.11

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

docker.io/postgres:12.3

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

docker.io/postgres:12

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

docker.io/postgres:9.5

linux/amd64 docker.io197.21MB2024-11-22 11:45
403

docker.io/postgres:11

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

docker.io/postgres:16-alpine

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

docker.io/postgres:9.6.16

linux/amd64 docker.io249.61MB2024-12-04 12:56
498

docker.io/postgres:12.4

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

docker.io/postgres:17.2

linux/amd64 docker.io434.77MB2024-12-19 19:20
730

docker.io/postgrest/postgrest:v12.0.1

linux/amd64 docker.io17.42MB2024-12-24 10:07
625

docker.io/postgres:16.6-alpine3.21

linux/amd64 docker.io274.85MB2024-12-30 14:08
440

docker.io/postgres:15.6

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

docker.io/postgres:13-alpine

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

docker.io/postgres:17.2-alpine3.21

linux/amd64 docker.io277.63MB2025-01-07 14:18
518

docker.io/postgres:11.4

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

docker.io/postgres:14

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

docker.io/postgres:17

linux/arm64 docker.io456.53MB2025-01-27 18:45
913

docker.io/postgres:14.15

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

docker.io/postgres:16.6-bookworm

linux/amd64 docker.io432.28MB2025-02-13 17:57
381

docker.io/postgres:17.2-bookworm

linux/amd64 docker.io434.73MB2025-02-13 18:00
482

docker.io/postgres:17.3-alpine

linux/amd64 docker.io284.35MB2025-02-14 10:44
479

docker.io/postgres:16.4-bullseye

linux/amd64 docker.io400.01MB2025-02-14 11:10
438

docker.io/postgres:15-bullseye

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

docker.io/postgres:15.3

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

docker.io/postgres:15.3-alpine

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

docker.io/postgres:14.17-bookworm

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

docker.io/postgres:13.17

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

docker.io/postgres:13.20

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

docker.io/postgres:15.6

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

docker.io/postgres:16.3-bullseye

linux/amd64 docker.io399.85MB2025-03-13 15:49
410

docker.io/postgres:15.12

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

docker.io/postgres:15.2-alpine

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

docker.io/postgres:15.6-bookworm

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

docker.io/postgres:15.6-bookworm

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

docker.io/postgres:11.22-alpine

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

docker.io/postgres:17.4

linux/amd64 docker.io438.36MB2025-03-26 11:02
642

docker.io/postgres:latest

linux/amd64 docker.io438.36MB2025-03-26 14:07
1034

docker.io/postgres:13

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

docker.io/postgrest/postgrest:v12.2.8

linux/amd64 docker.io17.34MB2025-04-04 13:14
1103

docker.io/postgres:14.5

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

docker.io/postgrest/postgrest:latest

linux/amd64 docker.io17.36MB2025-04-17 08:28
561

docker.io/postgres:16.8

linux/amd64 docker.io435.96MB2025-04-18 13:40
450

docker.io/postgres:12.11

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

docker.io/postgres:16.1

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

docker.io/postgres:11.9

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

docker.io/postgres:14.1-bullseye

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

docker.io/postgres:15.2-alpine

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

docker.io/postgrest/postgrest:v12.2.11

linux/amd64 docker.io17.35MB2025-04-28 13:15
308

docker.io/postgres:10.23-alpine3.16

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

docker.io/postgres:17.5-alpine

linux/amd64 docker.io278.20MB2025-05-12 12:29
583

docker.io/postgres:12.22-alpine3.21

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

docker.io/postgres:15.13

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

docker.io/postgres:17-alpine

linux/arm64 docker.io269.70MB2025-05-26 10:26
390

docker.io/postgres:16

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

docker.io/postgrest/postgrest:v12.2.12

linux/amd64 docker.io17.38MB2025-05-27 22:02
531

docker.io/postgres:12.3-alpine

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

docker.io/postgres:17.5-bookworm

linux/amd64 docker.io438.42MB2025-06-13 11:09
306

docker.io/postgres:17.5

linux/amd64 docker.io438.42MB2025-06-17 20:03
518

docker.io/postgres:16.9-bullseye

linux/amd64 docker.io424.74MB2025-06-30 16:00
354

docker.io/postgres:17.5-alpine3.22

linux/amd64 docker.io278.76MB2025-07-03 16:01
413

docker.io/postgres:13.21

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

docker.io/postgres:12-alpine

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

docker.io/postgres:latest

linux/arm64 docker.io459.31MB2025-07-18 11:41
613

docker.io/postgres:15.4-alpine

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

docker.io/postgres:16.9-alpine

linux/amd64 docker.io275.93MB2025-07-20 16:55
322

docker.io/postgres:11-alpine

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

docker.io/postgres:14.18

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

docker.io/postgres:16.5

linux/amd64 docker.io432.29MB2025-07-31 14:08
259

docker.io/postgres:15

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

docker.io/postgres:16.10-alpine3.21

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

docker.io/postgres:13.22

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

docker.io/postgres:17.6

linux/amd64 docker.io454.26MB2025-08-16 18:20
708

docker.io/postgres:17.6-bookworm

linux/amd64 docker.io438.47MB2025-08-19 22:35
353

docker.io/postgres:14.19

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

docker.io/postgres:14.9

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

docker.io/postgres:14.5

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