2022-10-06 23:19:05 UTC
82.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2566e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
PG_VERSION11.17
[#000] sha256:6c0d3b419d848ea31ca748254611d5d5ce3b76e3d7bba520fd87400fbb75f3b9 - 3.24% (2.68 MB)
[#001] sha256:dcc0a2d06c52831b717922c82a177581313d43ff48fa82da49ed9fe0bf8002d8 - 0.0% (1.23 KB)
[#002] sha256:3642389f32b5996f507baab5859e392131d7bce3768326935a4dfb51d4932b5a - 0.0% (115 Bytes)
[#003] sha256:094301b7e283b01dbcb884dad2f755120e33ed3b4a6032ad1cadbe8f2e571ad7 - 96.74% (79.9 MB)
[#004] sha256:3f33c39aa11aeef37a95880410f7fd6d15f2a3a03485996340f656f3a3815a18 - 0.01% (7.8 KB)
[#005] sha256:3df02b39b98e9f15c58fa750244717db9c9e35123a2a8864ef2d48e39145c4e0 - 0.0% (128 Bytes)
[#006] sha256:f46cba271a590d5b1e20ac88db3157d9c48f8acd5acd37c3fdb10ddb814abdf2 - 0.0% (173 Bytes)
[#007] sha256:2922f7a2fe229e72e2d61f2a144e6a3210da9a856b2113324607cccb75607cdf - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:b828bc14bc5ff03c8f7310fe0aed6ac5df19a393622d5d1d779a523234d07c0a in /
2022-08-09 17:38:39 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-06 22:58:32 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
2022-10-06 22:58:33 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-06 22:58:34 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-06 23:15:26 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-10-06 23:15:27 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.17
2022-10-06 23:15:28 UTC/bin/sh -c #(nop) ENV PG_SHA256=6e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
2022-10-06 23:18:56 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-06 23:18:56 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
2022-10-06 23:18:57 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-06 23:18:58 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-06 23:18:59 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-06 23:19:00 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-06 23:19:02 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-06 23:19:02 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-06 23:19:03 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-06 23:19:04 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-06 23:19:05 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-07 01:27:23 UTC
77.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2566e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
PG_VERSION11.17
[#000] sha256:213ec9aee27d8be045c6a92b7eac22c9a64b44558193775a1a7f626352392b49 - 3.44% (2.68 MB)
[#001] sha256:40ab741cca09cae3efd0bccbe57183973b177cda2b7f65d67078454dc1d97ba7 - 0.0% (1.26 KB)
[#002] sha256:c3636f308d36c203f3f75f1c294814f647b4641fc980b708edb341400491e6fc - 0.0% (149 Bytes)
[#003] sha256:511b723ccfbdd08ac1a33836b8839458eb8c5dc8cf68a4e6cacb6ac7c88351b1 - 96.54% (75 MB)
[#004] sha256:92fe1f252e89c49b4945727b681e32da4e190645956f19096909d64a97134ef7 - 0.01% (7.8 KB)
[#005] sha256:64e6b4d04e72e72f82859d3434e7a0986103d9efc78925f4acb689edbb99f60e - 0.0% (161 Bytes)
[#006] sha256:3975f58805c1a506737a42a1a0f30958c2becdee3146e44756d7ac6f80abdfc9 - 0.0% (193 Bytes)
[#007] sha256:9c697fee27ba0f5b1715cee6f744c60d658acdb8ed6fddd32d82f4e52b004354 - 0.01% (4.6 KB)
/bin/sh -c #(nop) ADD file:2a949686d9886ac7c10582a6c29116fd29d3077d02755e87e111870d63607725 in /
2022-08-09 17:19:53 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-07 01:10:45 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
2022-10-07 01:10:45 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-07 01:10:45 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-07 01:24:26 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-10-07 01:24:26 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.17
2022-10-07 01:24:26 UTC/bin/sh -c #(nop) ENV PG_SHA256=6e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
2022-10-07 01:27:20 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-07 01:27:21 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
2022-10-07 01:27:22 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-07 01:27:22 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-07 01:27:22 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-07 01:27:23 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-07 01:27:23 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-07 01:27:23 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-07 01:27:23 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-07 01:27:23 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-07 01:27:23 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-07 16:54:40 UTC
75.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2566e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
PG_VERSION11.17
[#000] sha256:9506b835437abb4d8ba1683e00c500b8f77e1975e930b356fbb72f2dbdc274d9 - 3.29% (2.49 MB)
[#001] sha256:e4a97f44d5468b1977fffbbe13f6ea3bd6c5e69dd42ec5115a4c24e3269e14d1 - 0.0% (1.26 KB)
[#002] sha256:369971d6642d8d215945973b41cf0d2d39bcc95648a5615067e1453a0b350063 - 0.0% (149 Bytes)
[#003] sha256:7f2c327994cd745d287413458988f462bd5306cee64b7d414eada3fa344378e5 - 96.7% (73.4 MB)
[#004] sha256:b35b9e00fd2af1a088d293cd1d729356430b883677d0d0cbd1f97b2d31d9598b - 0.01% (7.8 KB)
[#005] sha256:68f6353c1199fb7a692332a6fe242598852dd94427b3f9a2193eeb8e360dd4fc - 0.0% (162 Bytes)
[#006] sha256:e9b3ee74e8f47e142266579c15c97566b057eeb34828c949f865cffd60c19122 - 0.0% (195 Bytes)
[#007] sha256:127ae6ab498d5ea62c5ab91513da4e3e5c80a2754687daf2dce51a78b19f96e3 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:e8733e8cc0a81e15ca4041760b6e27392c34171512d34405a9b262b1fff5c687 in /
2022-08-09 17:49:22 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-07 15:56: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
2022-10-07 15:56:28 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-07 15:56:28 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-07 16:44:07 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-10-07 16:44:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.17
2022-10-07 16:44:07 UTC/bin/sh -c #(nop) ENV PG_SHA256=6e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
2022-10-07 16:54:36 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-07 16:54:37 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
2022-10-07 16:54:38 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-07 16:54:38 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-07 16:54:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-07 16:54:39 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-07 16:54:39 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-07 16:54:39 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-07 16:54:39 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-07 16:54:40 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-07 16:54:40 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-25 23:10:16 UTC
71.3 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2566e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
PG_VERSION11.17
[#000] sha256:c6556b3b6858c6fa1e328377cc2c4becdc9cd1bc3e7302aa7299936522cf93ba - 3.23% (2.31 MB)
[#001] sha256:3bf2f923de8a6d683ecedaed891a43887abcbed8db58206db4fb2575bf657302 - 0.0% (1.23 KB)
[#002] sha256:4f04bc58499919864f6f536832fc3a4bb2f5f2ff4acacd90b4dcad1f7359c2a8 - 0.0% (115 Bytes)
[#003] sha256:6be3de29997178956d1b63d8232567a5568c455b166b3cf6f0c36758c16be0f5 - 96.75% (69 MB)
[#004] sha256:75545789abf772302f57978026223576ef96a9a7379ad1e7068579aef351976c - 0.01% (7.8 KB)
[#005] sha256:8a01afa4744656b264e07483ef0ef2ed6f6659ef41d9f1f1710ef8c945a456dd - 0.0% (130 Bytes)
[#006] sha256:5c9f01ea19a15525048cd44babc126aab24dce650a48b1f6a4d1727903798dce - 0.0% (163 Bytes)
[#007] sha256:701ccf6623c55ce1ea68eafd1c8b9e8d50478d61c5491b27867f1a8a9aa9858b - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:75521fe16320b193092588f6f31052c85e736965ceb11673de18bd14965a45e6 in /
2022-08-09 16:57:44 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-25 22:00:42 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
2022-10-25 22:00:42 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-25 22:00:43 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-25 23:07:12 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-10-25 23:07:12 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.17
2022-10-25 23:07:12 UTC/bin/sh -c #(nop) ENV PG_SHA256=6e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
2022-10-25 23:10:14 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-25 23:10:15 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
2022-10-25 23:10:15 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-25 23:10:15 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-25 23:10:16 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-25 23:10:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-25 23:10:16 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-25 23:10:16 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-25 23:10:16 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-25 23:10:16 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-25 23:10:16 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-25 20:18:04 UTC
76.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2566e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
PG_VERSION11.17
[#000] sha256:9b18e9b68314027565b90ff6189d65942c0f7986da80df008b8431276885218e - 3.37% (2.58 MB)
[#001] sha256:752ef06c81fe7449fde5d3c51093143caf7718e55a6c850a9f6da967337e7f6e - 0.0% (1.26 KB)
[#002] sha256:a5785b250d180840d75ff583b3b43d6e72af5ccc4de8472237e952a41982163b - 0.0% (149 Bytes)
[#003] sha256:5bf8fd4dc53ccf46f6f2421117c41323b8d4f52be0708c8baec302e416e7cf07 - 96.61% (74 MB)
[#004] sha256:2dd31dd41b3164668289ea5ec288674785460f3aa649700c1eb6b52356ab675d - 0.01% (7.8 KB)
[#005] sha256:c52a4119a2ba7e166d117f7b21862f745d220b822a6f5f5c114ca206cec49992 - 0.0% (161 Bytes)
[#006] sha256:5cb6526f1143806a306beb20c705a6970c9058b24ea1f017233715cac814b230 - 0.0% (194 Bytes)
[#007] sha256:d1317e36bcf00cbbb56704afc417a82a3b5eb2a472301b276169b9dddeb01145 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:960fd469d48cf79ba14bbda71f3192074ed860c112e30e0bc92bff3440cb45ab in /
2022-08-09 17:39:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-25 20:04:17 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
2022-10-25 20:04:17 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-25 20:04:17 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-25 20:15:50 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-10-25 20:15:50 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.17
2022-10-25 20:15:50 UTC/bin/sh -c #(nop) ENV PG_SHA256=6e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
2022-10-25 20:18:02 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-25 20:18:03 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
2022-10-25 20:18:03 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-25 20:18:03 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-25 20:18:04 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-25 20:18:04 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-25 20:18:04 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-25 20:18:04 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-25 20:18:04 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-25 20:18:04 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-25 20:18:04 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-07 02:48:57 UTC
83.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2566e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
PG_VERSION11.17
[#000] sha256:c79e5d1a8c89b87020a754c8a5c8370faaa37bfb5bca1d8af66770d522ef1caf - 3.2% (2.67 MB)
[#001] sha256:2c9886199ad194bb654781346f2cd4cce2905c90d143f8d77e5869dada1864c5 - 0.0% (1.26 KB)
[#002] sha256:6dca1982ca555c7b16501b90c9ee856d6d3a531258352fd09a5db82ef45f9984 - 0.0% (148 Bytes)
[#003] sha256:917e1809db02b5d1e194bb44f6bef78ba919aebd9df816ecf37e8479b6ee3186 - 96.78% (80.7 MB)
[#004] sha256:d1d5043389a84b5c9dbfe9e15680a284d905582c80ffdbd149ebcf1717cb0599 - 0.01% (7.81 KB)
[#005] sha256:99bdd4c79f0dbb7616b0d121c8644bf453cc46943efaf0fac418fb5b3cd4631b - 0.0% (162 Bytes)
[#006] sha256:89c89422df56004c3f3665994f5f1b648d76f99df06104184066e30c1efe4f8b - 0.0% (193 Bytes)
[#007] sha256:db789401cfc613a9f9e96c6d0895ef7e94a5e496b5c0a9c807e02506e745c20d - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:66b351666e41834033d334aeb3dc6998dea77aa22e8e254028c923fee67a41a8 in /
2022-08-09 17:17:10 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-07 02:25:58 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
2022-10-07 02:25:59 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-07 02:26:00 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-07 02:44:43 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-10-07 02:44:44 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.17
2022-10-07 02:44:44 UTC/bin/sh -c #(nop) ENV PG_SHA256=6e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
2022-10-07 02:48:47 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-07 02:48:51 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
2022-10-07 02:48:52 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-07 02:48:53 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-07 02:48:55 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-07 02:48:55 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-07 02:48:56 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-07 02:48:56 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-07 02:48:56 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-07 02:48:57 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-07 02:48:57 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-07 03:57:46 UTC
78.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2566e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
PG_VERSION11.17
[#000] sha256:790c84f1f3409eab952345157df7fa804ba6b5f06d4ceb6f2dfa3c6de2064397 - 3.14% (2.47 MB)
[#001] sha256:8e890de774640a358825541264ef983fef765c29d72f21038ede1ac41c85e6fd - 0.0% (1.26 KB)
[#002] sha256:310de1aaaef21df2d67997a7dfe754c704ddf70ece33ada85f4f2dd0a4e02359 - 0.0% (149 Bytes)
[#003] sha256:11c299316f9b6ef9a891d27e076fd5c63b613652bab4afee1a49069b80e2b35b - 96.84% (76.2 MB)
[#004] sha256:2b46c40d4ace1d87d418d350ac9999a792c20f7217568e16c38c0394c38b26a7 - 0.01% (7.8 KB)
[#005] sha256:4046df1cb1f4926c7af99d25674f52baecafdf40c9e6d90deb4945a9b6de14e2 - 0.0% (161 Bytes)
[#006] sha256:a25311244a33d2a8b4b1657b600f4aa501e469796139ae69c0dfba3772b72b49 - 0.0% (195 Bytes)
[#007] sha256:376e4dab939e4fe8e1dcc9a8eae3b26c0652c690c9b99ead8f49b5400f370644 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:b43a065471bc4711415d3c67cd5b6559b0c48ee7ffe9761530477cf457a6dc34 in /
2022-08-09 17:41:46 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-07 03:35:39 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
2022-10-07 03:35:39 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-07 03:35:41 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-07 03:53:46 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-10-07 03:53:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.17
2022-10-07 03:53:47 UTC/bin/sh -c #(nop) ENV PG_SHA256=6e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
2022-10-07 03:57:34 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-07 03:57: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
2022-10-07 03:57:43 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-07 03:57:43 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-07 03:57:44 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-07 03:57:45 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-07 03:57:45 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-07 03:57:45 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-07 03:57:45 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-07 03:57:46 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-07 03:57:46 UTC/bin/sh -c #(nop) CMD ["postgres"]
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.