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

docker.io/postgres:15.2-alpine - 国内下载镜像源 浏览次数:48 安全受验证的发布者-Postgres
PostgreSQL 是一个开源的关系数据库管理系统(RDBMS),提供了传输控制协议(TCP)上的 PostgreSQL 服务。该镜像支持多种操作系统和存储引擎,方便开发、测试和部署应用程序。
源镜像 docker.io/postgres:15.2-alpine
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.2-alpine
镜像ID sha256:ddc12ac7fa27279bfcc41deaccd1368291ab7d71ca7cee0420b41f9974e9a468
镜像TAG 15.2-alpine
大小 243.09MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录
OS/平台 linux/amd64
浏览量 48 次
贡献者 60******2@qq.com
镜像创建 2023-03-30T01:50:00.819118944Z
同步时间 2025-03-19 10:17
更新时间 2025-03-31 09:47
开放端口
5432/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin LANG=en_US.utf8 PG_MAJOR=15 PG_VERSION=15.2 PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7 PGDATA=/var/lib/postgresql/data

Docker拉取命令 无权限下载?点我修复

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2023-03-30 09:50:00  0.00B 
/bin/sh -c #(nop)  CMD ["postgres"]
                        
# 2023-03-30 09:50:00  0.00B 
/bin/sh -c #(nop)  EXPOSE 5432
                        
# 2023-03-30 09:50:00  0.00B 
/bin/sh -c #(nop)  STOPSIGNAL SIGINT
                        
# 2023-03-30 09:50:00  0.00B 
/bin/sh -c #(nop)  ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2023-03-30 09:50:00  12.49KB 
/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/ 
                        
# 2023-03-30 09:50:00  0.00B 
/bin/sh -c #(nop)  VOLUME [/var/lib/postgresql/data]
                        
# 2023-03-30 09:50:00  0.00B 
/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
                        
# 2023-03-30 09:49:59  0.00B 
/bin/sh -c #(nop)  ENV PGDATA=/var/lib/postgresql/data
                        
# 2023-03-30 09:49:59  0.00B 
/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
                        
# 2023-03-30 09:49:59  58.77KB 
/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
                        
# 2023-03-30 09:49:58  235.96MB 
/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 		bison 		coreutils 		dpkg-dev dpkg 		flex 		gcc 		krb5-dev 		libc-dev 		libedit-dev 		libxml2-dev 		libxslt-dev 		linux-headers 		llvm-dev clang g++ 		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 	; 		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)"; 	wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; 	wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; 	./configure 		--build="$gnuArch" 		--enable-integer-datetimes 		--enable-thread-safety 		--enable-tap-tests 		--disable-rpath 		--with-uuid=e2fs 		--with-gnu-ld 		--with-pgport=5432 		--with-system-tzdata=/usr/share/zoneinfo 		--prefix=/usr/local 		--with-includes=/usr/local/include 		--with-libraries=/usr/local/lib 		--with-krb5 		--with-gssapi 		--with-ldap 		--with-tcl 		--with-perl 		--with-python 		--with-openssl 		--with-libxml 		--with-libxslt 		--with-icu 		--with-llvm 		--with-lz4 		--with-zstd 	; 	make -j "$(nproc)" world; 	make install-world; 	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 		su-exec 		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
                        
# 2023-03-30 09:47:14  0.00B 
/bin/sh -c #(nop)  ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
                        
# 2023-03-30 09:47:14  0.00B 
/bin/sh -c #(nop)  ENV PG_VERSION=15.2
                        
# 2023-03-30 09:47:13  0.00B 
/bin/sh -c #(nop)  ENV PG_MAJOR=15
                        
# 2023-03-30 09:47:13  0.00B 
/bin/sh -c mkdir /docker-entrypoint-initdb.d
                        
# 2023-03-30 09:47:13  0.00B 
/bin/sh -c #(nop)  ENV LANG=en_US.utf8
                        
# 2023-03-30 09:47:13  4.71KB 
/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; 	mkdir -p /var/lib/postgresql; 	chown -R postgres:postgres /var/lib/postgresql
                        
# 2023-03-30 02:19:24  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/sh"]
                        
# 2023-03-30 02:19:24  7.05MB 
/bin/sh -c #(nop) ADD file:9a4f77dfaba7fd2aa78186e4ef0e7486ad55101cefc1fabbc1b385601bb38920 in / 
                        
                    

镜像信息

{
    "Id": "sha256:ddc12ac7fa27279bfcc41deaccd1368291ab7d71ca7cee0420b41f9974e9a468",
    "RepoTags": [
        "postgres:15.2-alpine",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:15.2-alpine"
    ],
    "RepoDigests": [
        "postgres@sha256:d9c304353c031b21e9a7e33dc4781e272a9fa802a2ab9703fe4199d72ba1422c",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres@sha256:07ec36ad2d5ab9250f38c8ef749239b662cf15d03c9ddb7167422edbbdf71156"
    ],
    "Parent": "",
    "Comment": "",
    "Created": "2023-03-30T01:50:00.819118944Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "20.10.23",
    "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",
            "LANG=en_US.utf8",
            "PG_MAJOR=15",
            "PG_VERSION=15.2",
            "PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7",
            "PGDATA=/var/lib/postgresql/data"
        ],
        "Cmd": [
            "postgres"
        ],
        "Image": "sha256:f473977121dfcaeed533fd87632afed73afe1a3f6df407579b834b852177c81c",
        "Volumes": {
            "/var/lib/postgresql/data": {}
        },
        "WorkingDir": "",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": null,
        "StopSignal": "SIGINT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 243089073,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/0887f0c0e370c0e3833fefa9197b22ee5509280373f9996d1921d3a0131bfe17/diff:/var/lib/docker/overlay2/75545a9e5865577cb4ca2ef8a51392df27fab9ea84485eda0a62987e09640415/diff:/var/lib/docker/overlay2/8a072850bbe9e15c6f537294baf0dffa36d5fbaddea85e25d0fb256b5b82f2e9/diff:/var/lib/docker/overlay2/54c4097c16f1a33fab86366d47c4dba4ea583c83f1a275932d7e43558af28ac1/diff:/var/lib/docker/overlay2/41a1bed5ee2e8f254f9bd6323291bb46b464f6d4916777e66ac608eaeda477a2/diff:/var/lib/docker/overlay2/427d14c91a115c7c318446f83a38ef06741f3b05be1251f65b7f85ef8c0458f8/diff:/var/lib/docker/overlay2/3524b6f23d335dd40527e670f8d3921b1d63f26aeab51ae4439624553651b68e/diff",
            "MergedDir": "/var/lib/docker/overlay2/725169a3b119f8a16c6827bbf94759cc3513e2ae7fe7144b971aec7d4946261c/merged",
            "UpperDir": "/var/lib/docker/overlay2/725169a3b119f8a16c6827bbf94759cc3513e2ae7fe7144b971aec7d4946261c/diff",
            "WorkDir": "/var/lib/docker/overlay2/725169a3b119f8a16c6827bbf94759cc3513e2ae7fe7144b971aec7d4946261c/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:f1417ff83b319fbdae6dd9cd6d8c9c88002dcd75ecf6ec201c8c6894681cf2b5",
            "sha256:fcf02a753237f1b1b42cc1b01f064e519091b790f0a07c2b93ea57b5738ed0e4",
            "sha256:5a60e9fc7e1e4a0f1964971cc5e4ebfaadd3fe2aaebe7f8b50ba81919abdb322",
            "sha256:00134de398d0f9382cdbd6b9d96d11a345dd8089729daef0719e7b73a4e92318",
            "sha256:5f1c25ebb8aa0c2d09779e91211854612fd996d993c1a9b8fc7cf80a91bcbb1b",
            "sha256:2813163892f150ec0490a9f1f7b3079ce20127ea82159b59ef8c5cb43d747e23",
            "sha256:342ef26a205af001eb88827c2314002e2fd8fb771dcdcfb4a9694083188214b2",
            "sha256:2d4d2a830f34bdd6c688ae0571200b3674a098b3f89f246aadb6f89d6bf0ca3d"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-03-19T10:17:09.329550983+08:00"
    }
}

更多版本

docker.io/postgres:12.19-bullseye

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

docker.io/postgres:15-alpine

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

docker.io/postgres:12.19-alpine3.20

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

docker.io/postgres:16.3-alpine3.20

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

docker.io/postgres:14-alpine

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

docker.io/postgres:15-alpine

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

docker.io/postgres:15.4

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

docker.io/postgres:9.6.21-alpine

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

docker.io/postgres:13.8

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

docker.io/postgres:16

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

docker.io/postgres:9.6.24

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

docker.io/postgres:15.3

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

docker.io/postgres:16.3

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

docker.io/postgres:16.3-bookworm

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

docker.io/postgres:14.2-alpine

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

docker.io/postgres:16.4

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

docker.io/postgres:12.2

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

docker.io/postgres:17

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

docker.io/postgres:17-alpine

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

docker.io/postgres:14.12

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

docker.io/postgres:13.14

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

docker.io/postgres:10-alpine

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

docker.io/postgres:alpine

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

docker.io/postgres:14.7-alpine3.17

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

docker.io/postgres:14.11

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

docker.io/postgres:12.3

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

docker.io/postgres:12

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

docker.io/postgres:9.5

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

docker.io/postgres:11

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

docker.io/postgres:16-alpine

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

docker.io/postgres:9.6.16

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

docker.io/postgres:12.4

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

docker.io/postgres:17.2

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

docker.io/postgrest/postgrest:v12.0.1

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

docker.io/postgres:16.6-alpine3.21

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

docker.io/postgres:15.6

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

docker.io/postgres:13-alpine

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

docker.io/postgres:17.2-alpine3.21

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

docker.io/postgres:11.4

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

docker.io/postgres:14

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

docker.io/postgres:17

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

docker.io/postgres:14.15

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

docker.io/postgres:16.6-bookworm

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

docker.io/postgres:17.2-bookworm

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

docker.io/postgres:17.3-alpine

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

docker.io/postgres:16.4-bullseye

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

docker.io/postgres:15-bullseye

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

docker.io/postgres:15.3

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

docker.io/postgres:15.3-alpine

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

docker.io/postgres:14.17-bookworm

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

docker.io/postgres:13.17

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

docker.io/postgres:13.20

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

docker.io/postgres:15.6

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

docker.io/postgres:16.3-bullseye

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

docker.io/postgres:15.12

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

docker.io/postgres:15.2-alpine

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

docker.io/postgres:15.6-bookworm

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

docker.io/postgres:15.6-bookworm

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

docker.io/postgres:11.22-alpine

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

docker.io/postgres:17.4

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

docker.io/postgres:latest

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

docker.io/postgres:13

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