2022-01-04 01:39:17 UTC
81.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2569b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
PG_VERSION13.5
[#000] sha256:e6889e0d66307a4b916fc844f2dcbc03245c63bc4189dd3e88126d9dcf2f9231 - 3.32% (2.7 MB)
[#001] sha256:3af56146d51f459d9baa843fcf88ab0b80c1c9de99248bc2163f19197ba95d05 - 0.0% (1.25 KB)
[#002] sha256:87a14412d0e45405abe51e591c8467d465e5f91db0600bf8b9120d9c6f15217c - 0.0% (149 Bytes)
[#003] sha256:15cc2bd7049b7468127cb53058c77d07bbcc0133c98909314a02c75962d08a2e - 96.66% (78.5 MB)
[#004] sha256:fc5605f9f1c9ad4e212494809923ba0d297d5173fccd492556e1afde7fdd147f - 0.01% (8.81 KB)
[#005] sha256:078f0378fddd3d2ee2545f649591eda274bcdf4b06a2c9a860e644459feae41f - 0.0% (161 Bytes)
[#006] sha256:a75acd4cf231c17811b02bfd4911a629678b74bf57f27c324e04b3e2d8ef2d19 - 0.0% (194 Bytes)
[#007] sha256:f0a87285d14782c4722dd62e6cad5522841c89f522419797cb7a53f94a82362a - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:b9a17131c440053f2f67e127b447645f25fd7de2d6caca42f569cafab6291855 in /
2021-11-24 20:53:48 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 02:41: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
2021-11-30 02:41:28 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 02:41:29 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 03:06:19 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-11-30 03:06:19 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.5
2021-11-30 03:06:19 UTC/bin/sh -c #(nop) ENV PG_SHA256=9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
2021-11-30 03:14:27 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-utils perl-ipc-run perl-dev 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 03:14:29 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
2021-11-30 03:14:30 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 03:14:30 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 03:14:32 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 03:14:32 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:39:16 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:39:16 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:39:17 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:39:17 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:39:17 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:20:10 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_MAJOR13
PG_SHA2569b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
PG_VERSION13.5
[#000] sha256:59bf1c3509f33515622619af21ed55bbe26d24913cedbca106468a5fb37a50c3 - 3.51% (2.69 MB)
[#001] sha256:c50e01d57241cf7ef93a91060f5eb0b895a4b443f20dc1ce5e77d441184a6dc2 - 0.0% (1.25 KB)
[#002] sha256:a0646b0f1eadaf0cd3fdb4c4490a69c4c7aed9b7ae10b24eb9005c59aa0b6e57 - 0.0% (148 Bytes)
[#003] sha256:08018e47fc43d7d9e615d316ec8e0ad49ecf306dc7584c8cd090dc22676a0224 - 96.47% (73.8 MB)
[#004] sha256:6014f27756352af410abe6d28ba822923e24a778a296a710804516cff21a9679 - 0.01% (8.81 KB)
[#005] sha256:85760f97d4b8ec85367358df8d7e89d2c7868fcd02fe7aab1a5233d65ecc97ef - 0.0% (161 Bytes)
[#006] sha256:3e07f59f91dbeb6040338b66a4a4e671626b767ca743f1e913a016800355222c - 0.0% (194 Bytes)
[#007] sha256:f5e5e5a0657da75fa0c1d30fa327e5b45862ee934ee88b6f328a01bc74ee820a - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:9233f6f2237d79659a9521f7e390df217cec49f1a8aa3a12147bbca1956acdb9 in /
2021-11-24 20:19:40 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:59:34 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
2021-11-30 04:59:34 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:59:35 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 05:08:54 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-11-30 05:08:55 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.5
2021-11-30 05:08:55 UTC/bin/sh -c #(nop) ENV PG_SHA256=9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
2021-11-30 05:16:44 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-utils perl-ipc-run perl-dev 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 05:16:46 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
2021-11-30 05:16:48 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 05:16:48 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 05:16:50 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 05:16:50 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:20:09 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:20:10 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:20:10 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:20:10 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:20:10 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:50:04 UTC
74.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2569b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
PG_VERSION13.5
[#000] sha256:e4a43de54da9e309482f6762f0c11f5f547cd8fd61a49c5f158453066162023e - 3.36% (2.51 MB)
[#001] sha256:a865398e355d4d5f58fd1b16748daf1827598bdf1ba26c1d38fa7c8370d6705c - 0.0% (1.25 KB)
[#002] sha256:d879fc486c1bcf6d31fd2a8a5a4bc14acf4cc6f2d73e99dbf611ea8532bf4685 - 0.0% (149 Bytes)
[#003] sha256:baed8a459667e300edafe653e5556262d5014b9e60ca586d1709a449b5a6de8a - 96.62% (72.1 MB)
[#004] sha256:b14c1c9b873a9c35bbb2ccd2a0431ea48339d75bf578bc470adde7697314b981 - 0.01% (8.82 KB)
[#005] sha256:b2fb13c509a34098d74404a4206229399bc54c339b01626e2e61916b98cc6de2 - 0.0% (161 Bytes)
[#006] sha256:6b3596c802e2ec440ac579ba7db50b561295d7ab8d8ec1501df330742c4e07e2 - 0.0% (194 Bytes)
[#007] sha256:85d3c4d1f9748fdec70ee871b3cd05155bcf5fab6e7c7b6c62c6f6c8bbdfef7d - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:61137e0aa49ba06f57ac69466fe2fb116f580b5e6159d56f846b1d72c4a3c814 in /
2021-11-24 21:08:16 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:39: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
2021-11-30 04:39:18 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:39:19 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 04:44:55 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-11-30 04:44:55 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.5
2021-11-30 04:44:56 UTC/bin/sh -c #(nop) ENV PG_SHA256=9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
2021-11-30 04:50:07 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-utils perl-ipc-run perl-dev 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 04:50:10 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
2021-11-30 04:50:12 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 04:50:12 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 04:50:14 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 04:50:14 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:50:02 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:50:02 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:50:03 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:50:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:50:04 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 00:58:59 UTC
70.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2569b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
PG_VERSION13.5
[#000] sha256:5480d2ca1740c20ce17652e01ed2265cdc914458acd41256a2b1ccff28f2762c - 3.31% (2.32 MB)
[#001] sha256:f8f681d006162b865bd7dca8476d129c7fa1193b246ad8a598d27eb28769a6ac - 0.0% (1.25 KB)
[#002] sha256:c74eb577cd41aefd27e490e1cbe04812996920ee2af42f358c659d1bb8a40230 - 0.0% (149 Bytes)
[#003] sha256:673ef0e1a7f34e6978f2ea55f9ad1c1ad2244b8226af5efddc65471d602a1568 - 96.67% (67.8 MB)
[#004] sha256:4a1bc425704b6f8d84c7f0e81b6edc7cd6473e1936482d745b5b27fd2e677c30 - 0.01% (8.81 KB)
[#005] sha256:a54710fc0f34034881e1ab551a5b6a11fed0f2ad4d2be2d5abd8b7472f5db6fb - 0.0% (161 Bytes)
[#006] sha256:2886c51ec02cfdff40359e472ee32b56f218899cafe7a949718ab8636a34e708 - 0.0% (195 Bytes)
[#007] sha256:78131fef4f681ed73cd27152eee64030cf180e25008d8cb7ef57820532f72d78 - 0.01% (4.62 KB)
/bin/sh -c #(nop) ADD file:ca436da5b0bfc9c0e2fc685533c6628918000c8fff109fe9a8da625b9a798002 in /
2021-11-24 21:42:11 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 07:45:15 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
2021-11-30 07:45:15 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 07:45:17 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 08:23:26 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-11-30 08:23:27 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.5
2021-11-30 08:23:27 UTC/bin/sh -c #(nop) ENV PG_SHA256=9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
2021-11-30 08:28:01 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-utils perl-ipc-run perl-dev 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 08:28: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
2021-11-30 08:28:05 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 08:28:05 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 08:28:07 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 08:28:08 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 00:58:57 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 00:58:57 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 00:58:58 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 00:58:58 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 00:58:59 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:40:53 UTC
75.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2569b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
PG_VERSION13.5
[#000] sha256:9b3977197b4f2147bdd31e1271f811319dcd5c2fc595f14e81f5351ab6275b99 - 3.43% (2.59 MB)
[#001] sha256:995a68b04f2b01f2160f500ef732a967a427af5da712fac9029eeecbc80af73d - 0.0% (1.23 KB)
[#002] sha256:e8a8bdf2ee5e8b95fdba44140b8595c955b8639595bcf5c0f15841330176d8e5 - 0.0% (115 Bytes)
[#003] sha256:7bd50014bc89bff571a1ddce8b707b65b7e542844055458c6f50e9e869a7c4b0 - 96.55% (72.8 MB)
[#004] sha256:6abcd8432ed1d29370c39ed4c88436f3783e208197f8e1c94a809dfd216dac4b - 0.01% (8.81 KB)
[#005] sha256:2192c492dfac8e0f7abb6f3739dfd0a3a2f9447242dbb0aed8007d6bfe3b60f9 - 0.0% (129 Bytes)
[#006] sha256:70094a0d527477099743d59c614b10eb5a198e7641dc4d710c9455218bea012a - 0.0% (170 Bytes)
[#007] sha256:a5706c2f75886057a4e616a26cfd97b280ccf0f23d8f4ac5c7561a53afc991d2 - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:df53811312284306901fdaaff0a357a4bf40d631e662fe9ce6d342442e494b6c in /
2021-11-24 20:39:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:27:18 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
2021-11-30 04:27:19 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:27:20 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 04:31:41 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-11-30 04:31:42 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.5
2021-11-30 04:31:43 UTC/bin/sh -c #(nop) ENV PG_SHA256=9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
2021-11-30 04:35:05 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-utils perl-ipc-run perl-dev 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 04:35:05 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
2021-11-30 04:35:06 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 04:35:07 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 04:35:08 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 04:35:09 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:40:50 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:40:50 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:40:51 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:40:52 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:40:53 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:18:18 UTC
81.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2569b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
PG_VERSION13.5
[#000] sha256:159b5dcb1717c815c76ff5ea1db730e18e8609c9090238e43282856db9e71f47 - 3.29% (2.68 MB)
[#001] sha256:f21143ce0a44ab602b12471d2a1cf95c5dcbc9d805bd8ede00e2766f24d295b5 - 0.0% (1.25 KB)
[#002] sha256:f5c45529781f9e932a9022851fca78ba53022920657aa14e0479b195cac40189 - 0.0% (149 Bytes)
[#003] sha256:ecc1c27c7cb4e66ff4cf603a69955f871ddfa0d85a75cf182cebc198fdea659c - 96.69% (78.8 MB)
[#004] sha256:e30aaed91f0b66a110893574f89b875117584719d79aa166e9f08b97f3c1f511 - 0.01% (8.81 KB)
[#005] sha256:31d6e17342eae62fed7a6a7d80cdb018ec3fb242c4477c8fd1deb9b485b4bce5 - 0.0% (163 Bytes)
[#006] sha256:038dc9ddb83758e3040b958c572a7841533599a10014071221d4af68aa350f25 - 0.0% (194 Bytes)
[#007] sha256:562dca7dbc61d1dbf8e078560ca398f97397130feeb54bff93a3a2d00fc966b1 - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:57115dca2eb707f46b6301e75174e6aa316fb02ac28643b91429b75be51bd8c8 in /
2021-11-24 20:20:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:26:49 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
2021-11-30 04:26:53 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:27:03 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 04:35:36 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-11-30 04:35:41 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.5
2021-11-30 04:35:46 UTC/bin/sh -c #(nop) ENV PG_SHA256=9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
2021-11-30 04:40:03 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-utils perl-ipc-run perl-dev 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 04:40:12 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
2021-11-30 04:40:17 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 04:40:19 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 04:40:23 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 04:40:24 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:18:07 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:18:10 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:18:12 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:18:15 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:18:18 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:42:09 UTC
77.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2569b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
PG_VERSION13.5
[#000] sha256:d6baca485f3d0f7c77221be60fbef5db014a5ef9d8f53db4a310c947c690d189 - 3.2% (2.49 MB)
[#001] sha256:96844042cfb587d09e525bf6890e267412ad5971e27ece4faa02e82f6fda3c87 - 0.0% (1.25 KB)
[#002] sha256:826ee6a78ec06ec30a73acc9c0f2337f744b77da2931a6e0c1d3efb35d76cfe6 - 0.0% (149 Bytes)
[#003] sha256:d6b0778111994fe0866e180fe544dc8e43be295afc1b970b70a1c53c232f9fd7 - 96.79% (75.3 MB)
[#004] sha256:1910c7f947b58ce6d4907804cb061c68e3ba20f317c31caa0b1debda548ff2ff - 0.01% (8.81 KB)
[#005] sha256:d96158bead9d370d65f0e862c638b19d98a81cede9e18f3ae0714f3d2271910b - 0.0% (163 Bytes)
[#006] sha256:e38156bb68578fa43a833da3456d605ec04cac04934477df06a50e593dec82ce - 0.0% (195 Bytes)
[#007] sha256:aa82ee8501c080b6eee8e7b33edc0ea454591833c0a900a483828362d842d59d - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:cd24c711a2ef431b3ff94f9a02bfc42f159bc60de1d0eceecafea4e8af02441d in /
2021-11-24 20:41:23 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 08:50:09 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
2021-11-30 08:50:09 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 08:50:10 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 09:02:32 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-11-30 09:02:32 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.5
2021-11-30 09:02:32 UTC/bin/sh -c #(nop) ENV PG_SHA256=9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3
2021-11-30 09:05:18 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-utils perl-ipc-run perl-dev 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 09:05: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
2021-11-30 09:05:22 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 09:05:22 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 09:05:23 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 09:05:23 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:42:08 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:42:09 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:42:09 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:42:09 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:42:09 UTC/bin/sh -c #(nop) CMD ["postgres"]