2022-04-05 04:22:16 UTC
83.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:73b28a5955ec7fb46f2cf0434e4901a889f7dda3f8c9ec496300feb256c7eda8 - 3.23% (2.69 MB)
[#001] sha256:440ad7c551279d9f14743cb1f9d3d9c5e5c62431537e922e055ad3d5a9e98ddd - 0.0% (1.23 KB)
[#002] sha256:58f96dc8fa9ed931f47d352471b5f575a1bc1895361bfa37f9b002333ca26c1b - 0.0% (115 Bytes)
[#003] sha256:e18c1588288847ec8f3748cd402c7e72723d61a1eee1c7b88933f3cb1b622c00 - 96.75% (80.5 MB)
[#004] sha256:b26c3dce8881f2611257aaa1ae5c593377fc5037aa04ddf615fabed9ce2a2be3 - 0.01% (8.99 KB)
[#005] sha256:e0cbf2cf8d6b03ac855c4fa23811d9c406832d21bd8b10ecb6c228400fe2cd26 - 0.0% (129 Bytes)
[#006] sha256:55db457973fdf061b82322086f155656b5f5a99f8df1657c1bd38c230db17639 - 0.0% (168 Bytes)
[#007] sha256:5a413db5fb5f4c9e89b5225198184df099f2b57819875ec18994cca5dfa34b48 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:7d51a0f8691eb78c9062fd31984423a93d276a67b4ed5d1a706e1c2cd9fea23a in /
2022-04-04 23:38:25 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 04:18:33 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-04-05 04:18:34 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 04:18:35 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 04:18:36 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 04:18:37 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 04:18:38 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 04:22:06 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 lz4-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 04:22:07 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-04-05 04:22:08 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 04:22:09 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 04:22:10 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 04:22:11 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 04:22:13 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 04:22:13 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 04:22:14 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 04:22:15 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 04:22:16 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 07:29:39 UTC
78.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:df9b9388f04ad6279a7410b85cedfdcb2208c0a003da7ab5613af71079148139 - 3.42% (2.68 MB)
[#001] sha256:7902437d3a1288bbe38562c760e4e6b155617991e782f33ddd81da3f4f88305a - 0.0% (1.25 KB)
[#002] sha256:709e2267bc988471d02df06f7a9f133dd3195af6da61c0869b0555f72f0c1e4e - 0.0% (149 Bytes)
[#003] sha256:10c5a0a9c34e80b759f48da2f59463143ce1b722dd90eaf58e02100cff5d465d - 96.57% (75.9 MB)
[#004] sha256:b46af7f3869332e0e51d9e40c2c2234ba734789b3e5ed3942902871489a17f68 - 0.01% (8.99 KB)
[#005] sha256:65aa0c237f80432c7bf7bff1c3fa452d556cec8111caafe23cba9843e653fa0c - 0.0% (161 Bytes)
[#006] sha256:f6493ce748128dbafbff766fd0537ef0f8c6f6f6c9f0e8b2eda112937d5c132d - 0.0% (194 Bytes)
[#007] sha256:eaac3b44f9d0cd8625068462275abcce24f5f49d1a701ef9335b7c68931e48ae - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:5d673d25da3a14ce1f6cf66e4c7fd4f4b85a3759a9d93efb3fd9ff852b5b56e4 in /
2022-04-05 00:19:59 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 07:24: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-04-05 07:24:39 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 07:24:40 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 07:24:40 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 07:24:40 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 07:24:40 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 07:29:37 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 lz4-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 07:29:38 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-04-05 07:29:38 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 07:29:38 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 07:29:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 06:49:26 UTC
76.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:c319b1fc4ed70b8241a7ce6ac0c4015d354bf5cf8c01eb73c50b6709c0c46e49 - 3.27% (2.5 MB)
[#001] sha256:8cb8e77db967e9917c31ab0acb275de8ef6e22c214dfe4e99c2f6aeb9c10b299 - 0.0% (1.25 KB)
[#002] sha256:2d6281d8a0ebe004d81faf000876292bc4f792eb730ac75d51aaeca917db6eb0 - 0.0% (148 Bytes)
[#003] sha256:8962ed5c25a872bd86ae2e22280159500e3fc1b68528eeb48da083a33f52a379 - 96.71% (74 MB)
[#004] sha256:a393e675e59cf12a4961473d9a060c85e2089803b8c7272684d72f8ae988a39e - 0.01% (8.99 KB)
[#005] sha256:ee6e264a2e1c695f84a7e84815bacb36b38228be4c9fe0a6b881609f746710aa - 0.0% (163 Bytes)
[#006] sha256:4ba115949ac16142404eb91a1167e159a52ee4aedf058c40a6bf382f795f3a26 - 0.0% (194 Bytes)
[#007] sha256:f8e7479838e96f97aea40bbd8c1f3b9fab65ec6bdb7d2cf83e09596634ecc935 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:159dcddaab900372df882a4e94615ed84250e9cea3e74bc0479d98280342f596 in /
2022-04-04 23:49:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 06:44:13 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-04-05 06:44:13 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 06:44:15 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 06:44:15 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 06:44:16 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 06:44:16 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 06:49:17 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 lz4-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 06:49: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
2022-04-05 06:49:21 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 06:49:21 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 06:49:23 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 06:49:23 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 06:49:24 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 06:49:24 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 06:49:24 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 06:49:25 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 06:49:26 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 10:45:03 UTC
72 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:57fb4b5f1a47c953ca5703f0f81ce14e5d01cf23aa79558b5adb961cc526e320 - 3.21% (2.31 MB)
[#001] sha256:8a73a72bdda5eae4bf93e48ab5614ce664c8d55a850cc23684a669ac50d7c562 - 0.0% (1.25 KB)
[#002] sha256:900cc3f9e3fa7beceaf45b2dd8fd89c500fa73defa872eeafea1769d75770d73 - 0.0% (149 Bytes)
[#003] sha256:d8adfb15a6736896bb013598b44642801885d8214e1f4ba16d47debbc5a19399 - 96.77% (69.7 MB)
[#004] sha256:1ed17a7f370ada16668a1f2c3f802f0bd1e2dcb1bf5a80c017eba561bf81770e - 0.01% (8.99 KB)
[#005] sha256:7a8678c895dcc58e065956fcd6825d9e2756232f3c4a3d32d978456e520e51e9 - 0.0% (162 Bytes)
[#006] sha256:e7b71edd223fd5672d39d57e2b2bbdcf6a0bc5933e5363796571acc6ce4d84b4 - 0.0% (195 Bytes)
[#007] sha256:2360451ebcf1237627de0a6972e509018e8ba6c9d1790cc23ec0fe6b8945a8d2 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:20f8cdddc53a4a8bd78945fc32fe08e9f80ab3b16dc20a9aa4ba73b79f2bc71c in /
2022-04-04 23:57:35 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 10:40: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
2022-04-05 10:40:05 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 10:40:06 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 10:40:06 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 10:40:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 10:40:07 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 10:44:55 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 lz4-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 10:44:57 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-04-05 10:44:59 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 10:44:59 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 10:45:01 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 10:45:01 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 10:45:02 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 10:45:02 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 10:45:02 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 10:45:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 10:45:03 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 04:25:27 UTC
77.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:9981e73032c8833e387a8f96986e560edbed12c38119e0edb0439c9c2234eac9 - 3.34% (2.59 MB)
[#001] sha256:9998735be53b82d4d93cc72813622118271d565b9576e178c1cf196b949b56de - 0.0% (1.23 KB)
[#002] sha256:51338f5c9ae13e18e64d58b7ceacd16d0004c01ea9a50e77307e9c26794559a5 - 0.0% (115 Bytes)
[#003] sha256:38a25efe4e314a8e30195086721283f7e0f42b2fdcf744e1875f80e7259f5622 - 96.64% (74.9 MB)
[#004] sha256:cdc06d0d85d18705b288878acdc3fb313fd883ee5b78a74e3cbf6981189a3732 - 0.01% (8.99 KB)
[#005] sha256:b58ddd362edb162a023885b366740eeebfe0f58c1ee234b967695667ecdf9138 - 0.0% (130 Bytes)
[#006] sha256:06ec211c5fe3caa5fef503670477599b0c9babd24150da34cce37173e79f229b - 0.0% (170 Bytes)
[#007] sha256:b97582d6e26670a79552b62f288ca32662794a251194e116cdc4c2f81515986c - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:90e56af13188c7f0283d244a0d70b853d8bef8587a41f1da8eac3a2aba8964ef in /
2022-04-04 23:39:31 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 04:22: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
2022-04-05 04:22:01 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 04:22:02 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 04:22:03 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 04:22:04 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 04:22:05 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 04:25:17 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 lz4-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 04:25: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
2022-04-05 04:25:19 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 04:25:20 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 04:25:21 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 04:25:22 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 04:25:24 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 04:25:24 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 04:25:25 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 04:25:26 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 04:25:27 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 10:21:41 UTC
83.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:1877acf2d48ed8bcb5bd9756a95aca0c077457be7cf4fcef25807f4e9be88db1 - 3.2% (2.68 MB)
[#001] sha256:31d11c39eb8c6d4d061062b829221f428b3acf12369b01b6c042d6a713031c39 - 0.0% (1.26 KB)
[#002] sha256:cf0ff1d52fa2dd7453fce38e8e17b53514b2e104f4e6275e00196f88415a4398 - 0.0% (149 Bytes)
[#003] sha256:279134c15303f93f037c1994d168bee254dc4e96220e9d982c8331aaf8d86165 - 96.78% (81.1 MB)
[#004] sha256:3a7e9d9ede96defd8d24eff1bb92932f360bec6fd8ebaa09239d4bfeacc90f05 - 0.01% (8.99 KB)
[#005] sha256:5582c90abb54d8d0b06b2e43e1a9e441ce87c506d9372786f6d1d529b08fca65 - 0.0% (162 Bytes)
[#006] sha256:a8b6bb7958db82762d2d813c8907048f0ff4c3eb1aacdee7bbb62e8273673e70 - 0.0% (195 Bytes)
[#007] sha256:61d0d0285ae7be64f2f14aa1e593882990ba2571cd8f9a6bad867147008ad36d - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:960cf6f9d3d1cfcb36c2d67dd4c3eaba7db1d0c7afe97968512248d7f234ad47 in /
2022-04-05 00:23:32 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 10:15:26 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-04-05 10:15:31 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 10:15:41 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 10:15:44 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 10:15:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 10:15:48 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 10:20:40 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 lz4-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 10:20:50 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-04-05 10:20:59 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 10:21:06 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 10:21:18 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 10:21:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 10:21:22 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 10:21:25 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 10:21:32 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 10:21:37 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 10:21:41 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 06:58:27 UTC
79.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:a27b630f446c3da376a30cf610e4bfa6847f8b87c83702c29e72b986f4e52d28 - 3.11% (2.48 MB)
[#001] sha256:101f526f514773cdbd93dcd2746d73e8dff7395f41467133c139fc629c7b8db0 - 0.0% (1.25 KB)
[#002] sha256:cc452154c8b825654930b9dae70ac27b9d54bbae8d0ff8bacc09468465e28a3a - 0.0% (149 Bytes)
[#003] sha256:d96837e0678e40ae6f0bc3b72b9905f5d3643f24a0d610fe481ac0b2d47ac0ed - 96.87% (77.3 MB)
[#004] sha256:91ec8b57b5fbe25d6286a3424069a421cb633fe3c90e1992aa86ab363bc9444c - 0.01% (8.99 KB)
[#005] sha256:1b2437154847b88b910a815a4d7cf78cf22c70fe2577647d605ee4907c1eb967 - 0.0% (160 Bytes)
[#006] sha256:32cee4aaaa0b6413fb093efdb635f3d7c9041ebc7ea487156534c01f93f80226 - 0.0% (195 Bytes)
[#007] sha256:3cef25a4ef76799888f1e16a6b8f54364c670688b1052c8ad9e96101e03b59a5 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:f22e4b2be87d3c59c8c609acf79015938dc1fba0b26d7c1b59bd0fc36d63a906 in /
2022-04-04 23:41:39 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 06:55:28 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-04-05 06:55:28 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 06:55:29 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 06:55:29 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 06:55:29 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 06:55:29 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 06:58:22 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 lz4-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 06:58:25 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-04-05 06:58:26 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 06:58:26 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 06:58:26 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 06:58:27 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 06:58:27 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 06:58:27 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 06:58:27 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 06:58:27 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 06:58:27 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.