2021-11-16 02:12:17 UTC
76.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA256965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
PG_VERSION11.14
[#000] sha256:5420e0d28c84ecb16748cb90cc6acf8e2a81dab10cb1f674f3eee8533e53c62a - 3.52% (2.7 MB)
[#001] sha256:a69c9882c88ce94760f0d36deed4d8f55228d1df726a3bc33021031f8922aa5a - 0.0% (1.25 KB)
[#002] sha256:2788bc110cff8f1594e3fabf8ae849a646240d7e3c7ce77b566583c4a66b5467 - 0.0% (148 Bytes)
[#003] sha256:42b9e291c5b1ae1f8c813753ec22a3e5ec3f0ddd76481b5cc01f5206f6ab57e7 - 96.46% (74 MB)
[#004] sha256:872baddd70de5a104cbadf8259a84e343b9d9989ff69dfa1222c4b0f9c4ca0c9 - 0.01% (7.8 KB)
[#005] sha256:1dfd354c0b0d92d2f5a708a9980a2aaee053348940271a7e54ecbeb002f66c7f - 0.0% (161 Bytes)
[#006] sha256:5bfe4e901021429b9cb6f988be4d01b5035771c384a004b783e11d64f39206d9 - 0.0% (194 Bytes)
[#007] sha256:6dab19b763fc8e56a62665117829abb1d556e8d2fd1b82a228ab99bce143597e - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:403428c2903dd9dea10d069185873cb2c2c3149c553797807c69f22aa3d12fe3 in /
2021-11-12 16:38:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-12 23:55:01 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-12 23:55:01 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-12 23:55:02 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-13 00:19:15 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-11-13 00:19:15 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.14
2021-11-13 00:19:16 UTC/bin/sh -c #(nop) ENV PG_SHA256=965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
2021-11-16 02:12:12 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 llvm11-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-16 02:12:14 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-16 02:12:15 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 02:12:15 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 02:12:16 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 02:12:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 02:12:16 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 02:12:16 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 02:12:16 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 02:12:17 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 02:12:17 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 01:42:28 UTC
72.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA256965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
PG_VERSION11.14
[#000] sha256:97518928ae5f3d52d4164b314a7e73654eb686ecd8aafa0b79acd980773a740d - 3.73% (2.69 MB)
[#001] sha256:9f97b97dbe44d3d5922703b0d43a419416f14f7acfda692d113a7aa9b9721fe1 - 0.0% (1.25 KB)
[#002] sha256:1b95022c44c584684bb06e7baad164584f8952fb082bab4a0daf8dc9c4b803dd - 0.0% (149 Bytes)
[#003] sha256:0b55bd375f37214bb6b1476fb22aa047d9c3be2f38a156850980ffc63cae97ee - 96.25% (69.5 MB)
[#004] sha256:f251bb3017479d0cbc68b821516c688e26ba2b2702889f0541a4eb27bf3c3acd - 0.01% (7.8 KB)
[#005] sha256:2632dad32f2ac663101a03496a61adef74684e04249e7ca429fc0e25c1be41c3 - 0.0% (161 Bytes)
[#006] sha256:6cf50738726f55e0d9b90475e44550dee391b003091219b1b976f0fbdf4082ce - 0.0% (194 Bytes)
[#007] sha256:8bb76b302b86379c7032d8a832df3726ff1c4cbb34264ab0e5fdec6b7fd98a9b - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:762c899ec0505d1a32930ee804c5b008825f41611161be104076cba33b7e5b2b in /
2021-11-12 17:19:45 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-13 05:06:01 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-13 05:06:01 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-13 05:06:02 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-13 05:26:06 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-11-13 05:26:06 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.14
2021-11-13 05:26:07 UTC/bin/sh -c #(nop) ENV PG_SHA256=965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
2021-11-16 01:42:23 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 llvm11-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-16 01:42:24 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-16 01:42:25 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 01:42:25 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 01:42:26 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 01:42:26 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 01:42:27 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 01:42:27 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 01:42:27 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 01:42:27 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 01:42:28 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 02:10:49 UTC
70.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA256965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
PG_VERSION11.14
[#000] sha256:56afcfda5d78cc243287acbaad250c5e8c0f47aae620dd7c51985b0d3c9b2728 - 3.56% (2.51 MB)
[#001] sha256:0306bf867c1af5e86348eac10e572e5bbf7b1df7161b3237e6dbf067420ba562 - 0.0% (1.25 KB)
[#002] sha256:b273647972e23088da4f0aa3896b1e39e9c26c17f7239fe3fa6ca165b5190765 - 0.0% (149 Bytes)
[#003] sha256:5713f35e6c8052162671a0b2852ecc50d2ed8e40ccad72848bde1e48af490e16 - 96.43% (68.2 MB)
[#004] sha256:8ad0a1b2d2496a1f8d7cdf8ab96959cdc38894a7f9bccd98332838bb9fcb6bed - 0.01% (7.8 KB)
[#005] sha256:823c7a833f0efd2ce3767fb71240415c6602ee586613a1a9f903c094b5ed89a2 - 0.0% (161 Bytes)
[#006] sha256:b375518e9a401c01a26bb49f9e7bf464bde06fe05ac433a15cde9d467f788391 - 0.0% (193 Bytes)
[#007] sha256:56e245227da3c262d2ad89167f9fa82a15c82527b0191ae274e3dd8087ab4bf6 - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:6daf1fe862c00673bf9cf4d7e20b0bf253a56e7fb8ed5e730a4466ab9186e18a in /
2021-11-12 16:49:44 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-13 00:23:41 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-13 00:23:42 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-13 00:23:43 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-13 00:39:41 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-11-13 00:39:42 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.14
2021-11-13 00:39:43 UTC/bin/sh -c #(nop) ENV PG_SHA256=965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
2021-11-16 02:10:39 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm11-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-16 02:10:42 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-11-16 02:10:43 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 02:10:44 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 02:10:46 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 02:10:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 02:10:47 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 02:10:47 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 02:10:48 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 02:10:48 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 02:10:49 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 02:27:22 UTC
66.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA256965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
PG_VERSION11.14
[#000] sha256:764d2e53e1a607f2d8261522185d5b9021ade3ec1a595664ee90308c00176899 - 3.49% (2.33 MB)
[#001] sha256:65aac23bae9dde4628b949f53b16460bf45bbe0cb93feb0ca4e699560ec405be - 0.0% (1.25 KB)
[#002] sha256:1c82e83b49adac505e95de3db74b7b3d754078880f57793b8cd1a81d5c456289 - 0.0% (149 Bytes)
[#003] sha256:d22423ad9567b945a5240794ab3b0d7343db97defc77485983b9dc2d8464a96f - 96.49% (64.2 MB)
[#004] sha256:0144de59bad3b3179edb323bc213c53ec95b86d7eff48bdd67b91a7c4593adcd - 0.01% (7.8 KB)
[#005] sha256:fe6d0bb2b76833be4856f1ae0ede0de0191e871d12d1507b85b84695a47f61b9 - 0.0% (161 Bytes)
[#006] sha256:84b6b3cff973c8bc0056b19e20f3742b998f813e717a327ca62c51b705d29232 - 0.0% (193 Bytes)
[#007] sha256:65011253a5189a1d5dfef286377171f8824461730e9ba8e1aade8da1cd704479 - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:03e0720458c3475758bf4394afa56f2165198eb91e6e9581f7768e433744dd9b in /
2021-11-12 16:57:36 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-12 20:25:42 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-11-12 20:25:42 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-12 20:25:44 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-12 20:41:33 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-11-12 20:41:34 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.14
2021-11-12 20:41:34 UTC/bin/sh -c #(nop) ENV PG_SHA256=965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
2021-11-16 02:27:13 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 llvm11-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-16 02:27:16 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-16 02:27:17 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 02:27:18 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 02:27:19 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 02:27:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 02:27:20 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 02:27:21 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 02:27:21 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 02:27:22 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 02:27:22 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 02:05:51 UTC
71.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA256965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
PG_VERSION11.14
[#000] sha256:be307f383ecc62b27a29b599c3fc9d3129693a798e7fcce614f09174cfe2d354 - 3.64% (2.59 MB)
[#001] sha256:736fbb41a17a3d331434d1ced1bbefaf60ce58df545c90a6d1dbfeec5eb9af41 - 0.0% (1.23 KB)
[#002] sha256:99566057aebae6d994d20c6ed9fa0b7e7cd103f58ddce64c9096b244ec9905a0 - 0.0% (115 Bytes)
[#003] sha256:9e08fc8976cae0306a94c23c0d9915fea80dd4adb9657fb46686c6c8769d74b7 - 96.34% (68.5 MB)
[#004] sha256:66a3366b71a263ff6db473094b4676c2226e0728f1c6f052ed852c73f099db45 - 0.01% (7.8 KB)
[#005] sha256:ef6c5d95b1cfb892d8119d18ff119f9068feef4a3c7fa9667d460cfb48559613 - 0.0% (128 Bytes)
[#006] sha256:72e003aaf253a0b559fc52f88ffea05ee7289f213ffcf6602b39a6f7487c947d - 0.0% (173 Bytes)
[#007] sha256:9d646f7524e7baa190024caa2e8f0ac65b9e1c6fc70b9316340921028f34cbf4 - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:400c0466b29ccad54e0f6c0acef22542992828678c96693ef1f9f4d0551935d8 in /
2021-11-12 16:39:58 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-12 23:41:51 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-12 23:41:52 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-12 23:41:53 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-12 23:56:47 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-11-12 23:56:48 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.14
2021-11-12 23:56:49 UTC/bin/sh -c #(nop) ENV PG_SHA256=965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
2021-11-16 02:05:41 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm11-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-16 02:05:42 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-11-16 02:05:43 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 02:05:44 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 02:05:45 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 02:05:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 02:05:48 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 02:05:48 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 02:05:49 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 02:05:50 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 02:05:51 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 05:26:54 UTC
76.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA256965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
PG_VERSION11.14
[#000] sha256:72940440c1ab65eca4d38846164719ffde4b147543cc658d041407a925b13368 - 3.5% (2.69 MB)
[#001] sha256:e892d223635db5048d4e0f826cfa9094090c3aa12a15afc7fdd249d076ca3e80 - 0.0% (1.26 KB)
[#002] sha256:1443b2a29145c872139ba01a0f2ab1a45f154e89a612cdd03ded00d39d7e4875 - 0.0% (149 Bytes)
[#003] sha256:b97d17554d95cfa3a01e8649980369937aa9b6c795d8830d8674afd8aefbe438 - 96.49% (74.2 MB)
[#004] sha256:c8baa31bd50dcc1aaf1e588ed3543b023542275adf259bd998f366c7a657cc0b - 0.01% (7.8 KB)
[#005] sha256:f570e72da0628f27a5278e27026a04c5bd2b1ca4e805d24196b5ffa1240729e6 - 0.0% (161 Bytes)
[#006] sha256:41c4adcad93c8e32849f52313d5157359a77f27665df5512dae434c35f07e8e3 - 0.0% (192 Bytes)
[#007] sha256:a24c7d43722b852b46a37d00c43587d554af03c08ebe136c2249f5e803461c9f - 0.01% (4.61 KB)
/bin/sh -c #(nop) ADD file:4d45063079cb28a34f1e382fddb22f156ac99d5449aa05ed37cb653c1f7b80f2 in /
2021-11-12 21:18:01 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-13 14:19:29 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-13 14:19:31 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-13 14:19:42 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-13 14:38:01 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-11-13 14:38:06 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.14
2021-11-13 14:38:15 UTC/bin/sh -c #(nop) ENV PG_SHA256=965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
2021-11-16 05:25: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 llvm11-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-16 05:25: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
2021-11-16 05:26:06 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 05:26:09 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 05:26:25 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 05:26:33 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 05:26:37 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 05:26:39 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 05:26:45 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 05:26:50 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 05:26:54 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 01:55:32 UTC
73.3 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA256965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
PG_VERSION11.14
[#000] sha256:817a13b0e05928f7491adbf1d2cf261ec35079112247bd03469bbe31156aca7c - 3.4% (2.49 MB)
[#001] sha256:c11d0e178e11b961bdeb7fbf4c5d37bdf95bead1a94bf7cb11c22318da7b0408 - 0.0% (1.25 KB)
[#002] sha256:013949685d6dbf2034fe35128fa32dead6dda85c74b516d4e075450693ad8cd7 - 0.0% (149 Bytes)
[#003] sha256:bb67bdfebd80dba6f01fd75958e67f8c1400d82d430580f34c14a64eda313011 - 96.58% (70.8 MB)
[#004] sha256:53d7fcc4104411d551433a91ff53dba9fed3c661b297deb2c5a40db3f5d3c0b6 - 0.01% (7.8 KB)
[#005] sha256:abf0fb522589ae877af7e6af3b3b4e97f20e7cfc6c2c1b28af2d0f7b28705b43 - 0.0% (161 Bytes)
[#006] sha256:edb350f326582837ad199d67315f7de653e3f42903f8bdeb3b397f5d84739b5a - 0.0% (194 Bytes)
[#007] sha256:a25570a2802ab96c96d1097045e566368d63fb46392437936c4c96ea481d6fdb - 0.01% (4.6 KB)
/bin/sh -c #(nop) ADD file:7e0cf02b3f015b1a0f867c03b2902b85f2140be1cee7af63c23f367a487e4577 in /
2021-11-12 16:41:36 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-12 19:02:11 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-12 19:02:11 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-12 19:02:12 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-12 19:11:14 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-11-12 19:11:14 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.14
2021-11-12 19:11:14 UTC/bin/sh -c #(nop) ENV PG_SHA256=965c7f4be96fb64f9581852c58c4f05c3812d4ad823c0f3e2bdfe777c162f999
2021-11-16 01:55: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 llvm11-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-16 01:55:30 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-16 01:55:30 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 01:55:30 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 01:55:31 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 01:55:31 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 01:55:31 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 01:55:31 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 01:55:31 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 01:55:31 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 01:55:32 UTC/bin/sh -c #(nop) CMD ["postgres"]