Namespace
library
Image / Tag
postgres:12.13-alpine3.17
Content Digest
sha256:70c633227898bdb6d7b897ead58a3a2e357bbe6f5dd2d0c230263fa0e84d2eca
Details
Created

2023-01-09 18:48:50 UTC

Size

91.6 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

PG_VERSION

12.13


Layers

[#000] sha256:40e5b0b2e2bde18974628cadecd8a2f190f45f06c32846c16885d69b2908bf68 - 3.55% (3.25 MB)

[#001] sha256:093d697a6418eb05c03bd1f2ec776ef43f3366c0b203e0b233d9e5fb3e07af37 - 0.0% (1.22 KB)

[#002] sha256:b7ef2d146cf2212827af5cf49a06f3ae223b858fc14efa4eef4a3544e262d439 - 0.0% (115 Bytes)

[#003] sha256:1bffa6f89831b260df427a6d753184201dc77985d46036e6128f5c1b74d77ec7 - 96.44% (88.3 MB)

[#004] sha256:f8b5f191330c4e88f795a8ea1bb43204023c44ad8efb70a866445dda16eff6a3 - 0.01% (8.48 KB)

[#005] sha256:4bee6a043522e9ebf630910e2c28a6779ea37aaffaf02a233ec88ef3bcf598c3 - 0.0% (130 Bytes)

[#006] sha256:9c36a75051d0cd7d911238fb5023de2581ee0a12ab798d53e55d7c578021f31e - 0.0% (171 Bytes)

[#007] sha256:e685accaaee03585fd0d9ecdc5b46539a86c9131483957f912b406d19f438760 - 0.0% (4.67 KB)


History
2023-01-09 17:05:00 UTC

/bin/sh -c #(nop) ADD file:d03619a0ef81726c34189e849b80cc92da908eb36e116f28275d5765e6d0919a in /

2023-01-09 17:05:00 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-01-09 18:36:20 UTC

/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-01-09 18:36:21 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2023-01-09 18:36:22 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2023-01-09 18:46:07 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=12

2023-01-09 18:46:08 UTC

/bin/sh -c #(nop) ENV PG_VERSION=12.13

2023-01-09 18:46:09 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

2023-01-09 18:48:41 UTC

/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 ; 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 ; 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-01-09 18:48:41 UTC

/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-01-09 18:48:42 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2023-01-09 18:48:43 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2023-01-09 18:48:44 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2023-01-09 18:48:45 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2023-01-09 18:48:47 UTC

/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/

2023-01-09 18:48:47 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-01-09 18:48:48 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-01-09 18:48:49 UTC

/bin/sh -c #(nop) EXPOSE 5432

2023-01-09 18:48:50 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2023-01-09 19:32:35 UTC

Size

87.1 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

PG_VERSION

12.13


Layers

[#000] sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9 - 3.69% (3.21 MB)

[#001] sha256:eb286326f602388731b6b7d5ea90c1396c25225841d81c9a1e28c6020be1e322 - 0.0% (1.26 KB)

[#002] sha256:63139c77dd7e81ef958b7ecd822c2f71cfa0a9920fd8f46a9bc6e98569b4c5b6 - 0.0% (149 Bytes)

[#003] sha256:1ff6c16a0b8ed601ffdbadf53a6f49214341f2343761f4768af6395fe671dbe3 - 96.29% (83.8 MB)

[#004] sha256:8a2859f310af13379792406f150f3c41c12cbbf2e50692699d75a54aa70e75c5 - 0.01% (8.49 KB)

[#005] sha256:d1d66cd04ce3f8ff196d43f7414f08d2ab6511f0e71e1f7b3ef0d3149665d595 - 0.0% (161 Bytes)

[#006] sha256:4606809906280b7c7ec8a1a24a523e0c4ec8bdd0380a9f0297680f02d2b026ef - 0.0% (195 Bytes)

[#007] sha256:9664a190023ae5a8d8af6659cf5c867a007b3929e10d704912947e9b655868d7 - 0.01% (4.67 KB)


History
2023-01-09 17:05:20 UTC

/bin/sh -c #(nop) ADD file:e4d600fc4c9c293efe360be7b30ee96579925d1b4634c94332e2ec73f7d8eca1 in /

2023-01-09 17:05:20 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-01-09 19:21:00 UTC

/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-01-09 19:21:00 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2023-01-09 19:21:01 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2023-01-09 19:29:59 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=12

2023-01-09 19:29:59 UTC

/bin/sh -c #(nop) ENV PG_VERSION=12.13

2023-01-09 19:29:59 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

2023-01-09 19:32:32 UTC

/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 ; 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 ; 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-01-09 19:32:33 UTC

/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-01-09 19:32:34 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2023-01-09 19:32:34 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2023-01-09 19:32:34 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2023-01-09 19:32:34 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2023-01-09 19:32:34 UTC

/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/

2023-01-09 19:32:35 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-01-09 19:32:35 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-01-09 19:32:35 UTC

/bin/sh -c #(nop) EXPOSE 5432

2023-01-09 19:32:35 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2023-01-09 23:43:20 UTC

Size

85.1 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

PG_VERSION

12.13


Layers

[#000] sha256:0269c10e600f3a375f36ddabdbd264ce9503a455f0d0969ce8a00f24eaecc032 - 3.48% (2.96 MB)

[#001] sha256:909c72a9df3baa262940fa4442cb689b379ea4290fcf09350e2be758d22abf63 - 0.0% (1.23 KB)

[#002] sha256:b0351a3586f66e0818c6c33de9468bf6f24569571ba6aa82f79d8b9d00413826 - 0.0% (115 Bytes)

[#003] sha256:eb5b184c7f7b4e4459de24011e33ec8a265df4465a792d1769e76abe8a0ab9f6 - 96.5% (82.1 MB)

[#004] sha256:e854f42f89cd600c02da5bd596d737a4815463676e0df326ca4f15967a05495d - 0.01% (8.48 KB)

[#005] sha256:1c0b76f51eaa07f215c5539342b4b3dc21cf2498b68b0117ffb58945d3d68639 - 0.0% (128 Bytes)

[#006] sha256:5b0c40c6112d0a3042ef0671b0f213f204cbb447d6ff1f938922ab9fab69e994 - 0.0% (164 Bytes)

[#007] sha256:ede866cd08decc9cec9f490c664b2b8a022ea4b2ddbc6a0606f7e9369446fe14 - 0.01% (4.67 KB)


History
2023-01-09 17:04:54 UTC

/bin/sh -c #(nop) ADD file:b15fd8e9f996815394e25f20c8459bfb4c2a8c4074592d6f4c75f4fe79ce537e in /

2023-01-09 17:04:55 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-01-09 23:30:27 UTC

/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-01-09 23:30:27 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2023-01-09 23:30:28 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2023-01-09 23:40:35 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=12

2023-01-09 23:40:35 UTC

/bin/sh -c #(nop) ENV PG_VERSION=12.13

2023-01-09 23:40:36 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

2023-01-09 23:43:16 UTC

/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 ; 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 ; 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-01-09 23:43:18 UTC

/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-01-09 23:43:18 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2023-01-09 23:43:18 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2023-01-09 23:43:19 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2023-01-09 23:43:19 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2023-01-09 23:43:19 UTC

/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/

2023-01-09 23:43:19 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-01-09 23:43:19 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-01-09 23:43:19 UTC

/bin/sh -c #(nop) EXPOSE 5432

2023-01-09 23:43:20 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2023-01-09 21:58:45 UTC

Size

80 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

PG_VERSION

12.13


Layers

[#000] sha256:c527615e4ffa2d5b9b777fd469b3b5ba7c1b1e9201c065be2c43569de48a3754 - 3.41% (2.73 MB)

[#001] sha256:fd4157fd012b33b3e7ad71ecb79e6bed245bc640c620f0976b111fc558b9afa2 - 0.0% (1.23 KB)

[#002] sha256:1c4a6cf5c34a0f5b36fbe4cb9ff9e7a04f57e2c06d6b6e46a114bff6f6473005 - 0.0% (115 Bytes)

[#003] sha256:85cf4b4a1c3356379e88a9f492591d64345459daf72df58750935717ce31db9a - 96.57% (77.3 MB)

[#004] sha256:d423c3b85ebfc89321f9da6267e1c300fadf153c35846b7ee75c8b965051f67c - 0.01% (8.48 KB)

[#005] sha256:9583d491f82fd2e7c89f3a570417515caaca77ec383da3f99442089144d58c36 - 0.0% (128 Bytes)

[#006] sha256:8896f80ea92aaf0f4be61155b25abd2a5540871a01b3c5d855037eb980786d91 - 0.0% (162 Bytes)

[#007] sha256:2dc339ff5f674ae3afdae3748360bda7f5375bb966fd82d8e65de6b54fd9b227 - 0.01% (4.67 KB)


History
2023-01-09 17:06:27 UTC

/bin/sh -c #(nop) ADD file:4696f25d0f019b27457c55b3b128b70bf153f38e3e4eb5bdfc21058543313e94 in /

2023-01-09 17:06:27 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-01-09 21:46:30 UTC

/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-01-09 21:46:30 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2023-01-09 21:46:30 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2023-01-09 21:56:05 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=12

2023-01-09 21:56:06 UTC

/bin/sh -c #(nop) ENV PG_VERSION=12.13

2023-01-09 21:56:06 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

2023-01-09 21:58:42 UTC

/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 ; 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 ; 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-01-09 21:58:43 UTC

/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-01-09 21:58:44 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2023-01-09 21:58:44 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2023-01-09 21:58:45 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2023-01-09 21:58:45 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2023-01-09 21:58:45 UTC

/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/

2023-01-09 21:58:45 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-01-09 21:58:45 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-01-09 21:58:45 UTC

/bin/sh -c #(nop) EXPOSE 5432

2023-01-09 21:58:45 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2023-01-09 18:56:44 UTC

Size

85 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

PG_VERSION

12.13


Layers

[#000] sha256:a9eaa45ef418e883481a13c7d84fa9904f2ec56789c52a87ba5a9e6483f2b74f - 3.66% (3.11 MB)

[#001] sha256:6004074ad02a4a75a55e9f9de3d1384503d5aaaeeaac87e22ef67302f57a7397 - 0.0% (1.25 KB)

[#002] sha256:690395976a322335d42ab9b0d16f50a759c5f6fb5ffca7e4df22ee42c859325b - 0.0% (149 Bytes)

[#003] sha256:87ba574d3ce92c52c7b6a7bd325019a40384aa9dd5e3db0b5e36a452b69588de - 96.33% (81.9 MB)

[#004] sha256:00b88f777d409f016930956436ba193aa05d00dfa1b9cc77531c14284b674194 - 0.01% (8.49 KB)

[#005] sha256:c0a1b41ee9a81005b99daeca12bf160f5839e85160736419e8b68d0ba3153083 - 0.0% (161 Bytes)

[#006] sha256:66cfefac1cde8de1e23ebce5c43874e975cbfac22c6d3a71b9487d5d00ee8790 - 0.0% (195 Bytes)

[#007] sha256:30ce85e99dafd1fd9626743d17c19b70c51fc0be4934233d1f5b9c07254de163 - 0.01% (4.67 KB)


History
2023-01-09 17:04:48 UTC

/bin/sh -c #(nop) ADD file:3080f19f39259a4b77cc53975de0184c78d4335ceb9ffb77a2838d0539ad6f85 in /

2023-01-09 17:04:49 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-01-09 18:48:08 UTC

/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-01-09 18:48:08 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2023-01-09 18:48:08 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2023-01-09 18:54:50 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=12

2023-01-09 18:54:50 UTC

/bin/sh -c #(nop) ENV PG_VERSION=12.13

2023-01-09 18:54:50 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

2023-01-09 18:56:41 UTC

/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 ; 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 ; 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-01-09 18:56:42 UTC

/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-01-09 18:56:43 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2023-01-09 18:56:43 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2023-01-09 18:56:43 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2023-01-09 18:56:44 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2023-01-09 18:56:44 UTC

/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/

2023-01-09 18:56:44 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-01-09 18:56:44 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-01-09 18:56:44 UTC

/bin/sh -c #(nop) EXPOSE 5432

2023-01-09 18:56:44 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2023-01-09 22:43:25 UTC

Size

92.5 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

PG_VERSION

12.13


Layers

[#000] sha256:f45bfda3aa14e255d9eb4c9a108eb3d8c6721946b4aa2e5808e5092242344a1c - 3.49% (3.23 MB)

[#001] sha256:aa1151129ee425b166e8a582e89a68f81d3abc38c488b7c2bc3df173fc6a7b0d - 0.0% (1.25 KB)

[#002] sha256:b29c12e4681195d016bcf82fe4146b0530e49b0e81a229e7ed4581d30bd1bc76 - 0.0% (149 Bytes)

[#003] sha256:c2b6ff666e529721f6943f3a8ad5cc3fbd5eb81023a628a46a20819e3a7cf84e - 96.49% (89.2 MB)

[#004] sha256:022bca8c28b507d9c0cbe5e04bce7887e6ce1069f43459f57bf70db64003145f - 0.01% (8.49 KB)

[#005] sha256:fd9e53796c03f355da56db4f96797c4e27b79d1c43af13a6c470b5abd001986b - 0.0% (161 Bytes)

[#006] sha256:7c0770ba67d83f9e3e36a1ee4ddc253f2bae8ff1ffd0a6d368411761b549f32c - 0.0% (194 Bytes)

[#007] sha256:9a1ebd925a7ac4bd6aca89cf496ecad2bb31c0c0b5d85e03cf6d7e30c9d471e3 - 0.0% (4.67 KB)


History
2023-01-09 17:05:13 UTC

/bin/sh -c #(nop) ADD file:9a1d27fdc0c915f387f2446c85193d5215b18020b313114f0bf2799efcc1baae in /

2023-01-09 17:05:13 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-01-09 22:29:04 UTC

/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-01-09 22:29:05 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2023-01-09 22:29:06 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2023-01-09 22:40:14 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=12

2023-01-09 22:40:15 UTC

/bin/sh -c #(nop) ENV PG_VERSION=12.13

2023-01-09 22:40:15 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

2023-01-09 22:43:15 UTC

/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 ; 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 ; 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-01-09 22:43:19 UTC

/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-01-09 22:43:21 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2023-01-09 22:43:21 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2023-01-09 22:43:22 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2023-01-09 22:43:23 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2023-01-09 22:43:23 UTC

/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/

2023-01-09 22:43:24 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-01-09 22:43:24 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-01-09 22:43:24 UTC

/bin/sh -c #(nop) EXPOSE 5432

2023-01-09 22:43:25 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2023-01-09 22:37:02 UTC

Size

87.5 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

PG_VERSION

12.13


Layers

[#000] sha256:ae982806674c51a962c0fdd6e19f464ebd673df529c5cfb7c1d049e0b618d384 - 3.45% (3.02 MB)

[#001] sha256:662a09d3140efd92c8236e927cd76468e6a9e6ec85e642c8be853af8115fc86b - 0.0% (1.26 KB)

[#002] sha256:0c5fdcfa24c97962c73bfbc6153d69d967abd53e8d047f34419139a3f3802614 - 0.0% (149 Bytes)

[#003] sha256:a9bc6ed0ef7a0a999ea012fb7b7841343d7eceb6212fcaafdae30783d1fd1809 - 96.53% (84.5 MB)

[#004] sha256:fa8baf360ee86793279f8310811bf123ae47503d3a3dba74993deec310a48460 - 0.01% (8.49 KB)

[#005] sha256:af99bf52be427f96e96f42802bf469ba5a1c170bc4885cdf05e28dea9e5ccbd1 - 0.0% (162 Bytes)

[#006] sha256:ce98de6097cb765188d2680777eed3e057cf2b5e5236794224558e180ab8d8bb - 0.0% (194 Bytes)

[#007] sha256:6b90e44ef5f3f866346810afbfd041f200ef512d3bf9d34994ac17925a528251 - 0.01% (4.67 KB)


History
2023-01-09 17:05:44 UTC

/bin/sh -c #(nop) ADD file:eabe7c3c368e65478b53ac35c1daf3b703f2bca4ecdab2d080a65e8b981d7d4a in /

2023-01-09 17:05:46 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-01-09 22:19:12 UTC

/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-01-09 22:19:13 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2023-01-09 22:19:15 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2023-01-09 22:32:59 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=12

2023-01-09 22:33:00 UTC

/bin/sh -c #(nop) ENV PG_VERSION=12.13

2023-01-09 22:33:00 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b6c623046af4548f11a84b407934d675d11ed070c793d15b04683bf5f322e02d

2023-01-09 22:36:39 UTC

/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 ; 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 ; 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-01-09 22:36:54 UTC

/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-01-09 22:36:56 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2023-01-09 22:36:56 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2023-01-09 22:36:58 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2023-01-09 22:36:59 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2023-01-09 22:36:59 UTC

/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/

2023-01-09 22:37:00 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-01-09 22:37:01 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-01-09 22:37:02 UTC

/bin/sh -c #(nop) EXPOSE 5432

2023-01-09 22:37:02 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete