2023-01-09 18:42:44 UTC
93.7 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_SHA256508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
PG_VERSION14.6
[#000] sha256:40e5b0b2e2bde18974628cadecd8a2f190f45f06c32846c16885d69b2908bf68 - 3.47% (3.25 MB)
[#001] sha256:093d697a6418eb05c03bd1f2ec776ef43f3366c0b203e0b233d9e5fb3e07af37 - 0.0% (1.22 KB)
[#002] sha256:b7ef2d146cf2212827af5cf49a06f3ae223b858fc14efa4eef4a3544e262d439 - 0.0% (115 Bytes)
[#003] sha256:d1b3a5fe6ad483865e5891d74009c08d20a9e60a442293e2313590396b019c01 - 96.52% (90.4 MB)
[#004] sha256:21b748ac87398608aab9ef60f50e022b8238f9877eaf56bdd6e8fbb37649c7b9 - 0.01% (8.99 KB)
[#005] sha256:5884545b311cffaaf83835c9f22df0284092bf2bfd49e3a6623b69ca4412e066 - 0.0% (129 Bytes)
[#006] sha256:0525951bd40dea9bf2563e450c5ffb4a13c3cdbe9135c467f6c113275cfc25d6 - 0.0% (172 Bytes)
[#007] sha256:cf0c03aca7a2bcf3621f14dfc36cbd0481602449a62a59a48fccaae086ec5376 - 0.0% (4.67 KB)
/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:39:51 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2023-01-09 18:39:52 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.6
2023-01-09 18:39:53 UTC/bin/sh -c #(nop) ENV PG_SHA256=508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
2023-01-09 18:42:35 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 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:42:35 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:42:36 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:42:37 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-01-09 18:42:38 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-01-09 18:42:39 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-01-09 18:42:41 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-01-09 18:42:41 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-01-09 18:42:42 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-01-09 18:42:43 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-01-09 18:42:44 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-01-09 19:26:57 UTC
89.1 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_SHA256508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
PG_VERSION14.6
[#000] sha256:8921db27df2831fa6eaa85321205a2470c669b855f3ec95d5a3c2b46de0442c9 - 3.61% (3.21 MB)
[#001] sha256:eb286326f602388731b6b7d5ea90c1396c25225841d81c9a1e28c6020be1e322 - 0.0% (1.26 KB)
[#002] sha256:63139c77dd7e81ef958b7ecd822c2f71cfa0a9920fd8f46a9bc6e98569b4c5b6 - 0.0% (149 Bytes)
[#003] sha256:17baeacd3984a5eb133fc7389fff3db709cfb3708a1ded4d109df2cb13889cc3 - 96.38% (85.9 MB)
[#004] sha256:5f08b9782916ac214e52ac6123920f7fede2f2f5f0b1412af408a4ed744e3a6b - 0.01% (8.99 KB)
[#005] sha256:a836be7ad6589cb520b34957958c4603c5345bd0f7d580985dd58fb6466c1b7f - 0.0% (162 Bytes)
[#006] sha256:1966853affaf5905214f7f34a66a149ea440e73bbf69cadb0fd220ccdc286fda - 0.0% (194 Bytes)
[#007] sha256:4dc6d2c8dedef180893d2ce05af712b06b45d430357ae21066d058bc33bd260f - 0.01% (4.67 KB)
/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:24:09 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2023-01-09 19:24:09 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.6
2023-01-09 19:24:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
2023-01-09 19:26:54 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 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:26:55 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:26: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 19:26:56 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-01-09 19:26:57 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-01-09 19:26:57 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-01-09 19:26:57 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-01-09 19:26:57 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-01-09 19:26:57 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-01-09 19:26:57 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-01-09 19:26:57 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-01-09 23:37:25 UTC
87 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_SHA256508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
PG_VERSION14.6
[#000] sha256:0269c10e600f3a375f36ddabdbd264ce9503a455f0d0969ce8a00f24eaecc032 - 3.41% (2.96 MB)
[#001] sha256:909c72a9df3baa262940fa4442cb689b379ea4290fcf09350e2be758d22abf63 - 0.0% (1.23 KB)
[#002] sha256:b0351a3586f66e0818c6c33de9468bf6f24569571ba6aa82f79d8b9d00413826 - 0.0% (115 Bytes)
[#003] sha256:9c7a5dc5d2e3b2b0aa6c323678b76a10bb4053eeb0a43d52f9c11311157bf852 - 96.58% (84 MB)
[#004] sha256:5bc65153fa5d5ece8fb3790edf2b956dd4d422853e0be80342fc7a4336ce9526 - 0.01% (8.99 KB)
[#005] sha256:5d7a8292bc103e1cead7043ee4ba991aeaf845ea922acdf7fe26f1dcca4141be - 0.0% (130 Bytes)
[#006] sha256:edbdfff9b614e0a61eb374cd41c92219435b793dcd3f7e54de984e9577c60370 - 0.0% (164 Bytes)
[#007] sha256:01582ff1c2a1a2da175b0e5cd789861eb111951b2c83f2e5d89a75caed8a22d8 - 0.01% (4.67 KB)
/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:33:40 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2023-01-09 23:33:41 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.6
2023-01-09 23:33:41 UTC/bin/sh -c #(nop) ENV PG_SHA256=508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
2023-01-09 23:37:21 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 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:37:23 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:37:24 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:37:24 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-01-09 23:37:24 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-01-09 23:37:25 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-01-09 23:37:25 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-01-09 23:37:25 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-01-09 23:37:25 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-01-09 23:37:25 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-01-09 23:37:25 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-01-09 21:52:46 UTC
81.9 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_SHA256508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
PG_VERSION14.6
[#000] sha256:c527615e4ffa2d5b9b777fd469b3b5ba7c1b1e9201c065be2c43569de48a3754 - 3.34% (2.73 MB)
[#001] sha256:fd4157fd012b33b3e7ad71ecb79e6bed245bc640c620f0976b111fc558b9afa2 - 0.0% (1.23 KB)
[#002] sha256:1c4a6cf5c34a0f5b36fbe4cb9ff9e7a04f57e2c06d6b6e46a114bff6f6473005 - 0.0% (115 Bytes)
[#003] sha256:105d1dc9ddbfad8801983e859b9a7d6146aefdb4c11b0f2dbc3f2773859efd75 - 96.65% (79.2 MB)
[#004] sha256:8b70ae1f30c5e7dbf30b3cd84b0e34bed91e83d40bb1ade1d671b7ad041d3c20 - 0.01% (8.99 KB)
[#005] sha256:452a98385a61ba1d7102754577eb502423206c7a7a142be857b57e2a65a19f13 - 0.0% (129 Bytes)
[#006] sha256:43196de34e5379ccdb2486dd84b85a228e67d4e8aba63aa78d6b7cf9c44261d3 - 0.0% (163 Bytes)
[#007] sha256:842e6caf0846090a1f53ac110b80d53dc17a347e8b25143fb214b1fd6eba42bd - 0.01% (4.67 KB)
/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:49:46 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2023-01-09 21:49:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.6
2023-01-09 21:49:47 UTC/bin/sh -c #(nop) ENV PG_SHA256=508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
2023-01-09 21:52:43 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 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:52:44 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:52:45 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:52:45 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-01-09 21:52:46 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-01-09 21:52:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-01-09 21:52:46 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-01-09 21:52:46 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-01-09 21:52:46 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-01-09 21:52:46 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-01-09 21:52:46 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-01-09 18:52:32 UTC
86.9 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_SHA256508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
PG_VERSION14.6
[#000] sha256:a9eaa45ef418e883481a13c7d84fa9904f2ec56789c52a87ba5a9e6483f2b74f - 3.58% (3.11 MB)
[#001] sha256:6004074ad02a4a75a55e9f9de3d1384503d5aaaeeaac87e22ef67302f57a7397 - 0.0% (1.25 KB)
[#002] sha256:690395976a322335d42ab9b0d16f50a759c5f6fb5ffca7e4df22ee42c859325b - 0.0% (149 Bytes)
[#003] sha256:73fa4f129f16b78557ad0d31ac47d81c41ecf7d43914f8f79e3102064275cf30 - 96.41% (83.8 MB)
[#004] sha256:0a7be7d8ad8b4b5262df6682b57aacb72027f7151f62f5cf5bbbccf66c9ddc24 - 0.01% (8.99 KB)
[#005] sha256:96306ea206e71b0be14388570ec87b82dba9bd270b1c54762037943eda37d503 - 0.0% (162 Bytes)
[#006] sha256:b5037d9b606de567be8cf3d380652c15024d56f03a6d4f4fe8ef192e25168686 - 0.0% (193 Bytes)
[#007] sha256:642fbc6f316e9d3cca744574c0f61d6b0e593a01341b414c7fb9cd35731425f8 - 0.01% (4.67 KB)
/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:50:32 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2023-01-09 18:50:32 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.6
2023-01-09 18:50:32 UTC/bin/sh -c #(nop) ENV PG_SHA256=508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
2023-01-09 18:52:29 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 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:52:31 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:52:31 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:52:31 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-01-09 18:52:32 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-01-09 18:52:32 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-01-09 18:52:32 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-01-09 18:52:32 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-01-09 18:52:32 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-01-09 18:52:32 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-01-09 18:52:32 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-01-09 22:36:23 UTC
94.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_SHA256508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
PG_VERSION14.6
[#000] sha256:f45bfda3aa14e255d9eb4c9a108eb3d8c6721946b4aa2e5808e5092242344a1c - 3.41% (3.23 MB)
[#001] sha256:aa1151129ee425b166e8a582e89a68f81d3abc38c488b7c2bc3df173fc6a7b0d - 0.0% (1.25 KB)
[#002] sha256:b29c12e4681195d016bcf82fe4146b0530e49b0e81a229e7ed4581d30bd1bc76 - 0.0% (149 Bytes)
[#003] sha256:d9b434375e2c4287bbe17e38b0effbb73e003e55f9a25135a45c03d4fe4d6e9f - 96.57% (91.4 MB)
[#004] sha256:a5922bdf67ddcbb5dc9b3a4e2a05fff3bb99cf86deeec6125fb5d0a0cfa04d46 - 0.01% (8.99 KB)
[#005] sha256:810769902ae8cc80108cd95c49cf3437f13bd16b7cdc76766c380d47cbf96e86 - 0.0% (163 Bytes)
[#006] sha256:e3ba9ecc4618789959f09b6500f7c6be12e3070b799ef6e55b0b6c5e8d38fd5c - 0.0% (194 Bytes)
[#007] sha256:271520f86a42456ae1b6bebf2224d3a035ae7b87625c6046279bf10941e6b384 - 0.0% (4.67 KB)
/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:33:02 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2023-01-09 22:33:02 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.6
2023-01-09 22:33:03 UTC/bin/sh -c #(nop) ENV PG_SHA256=508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
2023-01-09 22:36: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 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 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: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 22:36:19 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:20 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-01-09 22:36:21 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-01-09 22:36:21 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-01-09 22:36:22 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-01-09 22:36:22 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-01-09 22:36:22 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-01-09 22:36:23 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-01-09 22:36:23 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-01-09 22:28:09 UTC
89.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_SHA256508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
PG_VERSION14.6
[#000] sha256:ae982806674c51a962c0fdd6e19f464ebd673df529c5cfb7c1d049e0b618d384 - 3.37% (3.02 MB)
[#001] sha256:662a09d3140efd92c8236e927cd76468e6a9e6ec85e642c8be853af8115fc86b - 0.0% (1.26 KB)
[#002] sha256:0c5fdcfa24c97962c73bfbc6153d69d967abd53e8d047f34419139a3f3802614 - 0.0% (149 Bytes)
[#003] sha256:64933b318cad45dec5553d2db580e40b2fc7949dca84b7df8d437464ef35db22 - 96.61% (86.6 MB)
[#004] sha256:3bd41a2abe1451d321c9b40d0674a30abc788a1fb37224a6bab233e1028326da - 0.01% (8.99 KB)
[#005] sha256:c7652240a520ee6bfc26594bbb449f9ed0b3af6abb622802c267ec12ebc987f7 - 0.0% (161 Bytes)
[#006] sha256:7d3544ea8737ce8417120930c5cb4ac50bc157c215a18f3f92cb76bea251a866 - 0.0% (193 Bytes)
[#007] sha256:534ed2e7cff55e6bcbb3e79a1b618fbcb72a01fd85c7c426ee22be9f91327d08 - 0.01% (4.67 KB)
/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:24:14 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2023-01-09 22:24:14 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.6
2023-01-09 22:24:15 UTC/bin/sh -c #(nop) ENV PG_SHA256=508840fc1809d39ab72274d5f137dabb9fd7fb4f933da4168aeebb20069edf22
2023-01-09 22:27:48 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 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:28:02 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:28:03 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:28:04 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-01-09 22:28:06 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-01-09 22:28:06 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-01-09 22:28:07 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-01-09 22:28:07 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-01-09 22:28:08 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-01-09 22:28:08 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-01-09 22:28:09 UTC/bin/sh -c #(nop) CMD ["postgres"]