2022-10-06 23:11:10 UTC
84.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_SHA25673876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
PG_VERSION13.8
[#000] sha256:6c0d3b419d848ea31ca748254611d5d5ce3b76e3d7bba520fd87400fbb75f3b9 - 3.17% (2.68 MB)
[#001] sha256:dcc0a2d06c52831b717922c82a177581313d43ff48fa82da49ed9fe0bf8002d8 - 0.0% (1.23 KB)
[#002] sha256:3642389f32b5996f507baab5859e392131d7bce3768326935a4dfb51d4932b5a - 0.0% (115 Bytes)
[#003] sha256:42ba84bbf0de34803c328371cf766ebd4a1031994e2d270a3e9a5964ecbdb70e - 96.81% (81.7 MB)
[#004] sha256:7d9986e6d5ca24fe2e800e37998647c0be1ee59f2e3adb90fad55aae438a415d - 0.01% (8.81 KB)
[#005] sha256:efa09dde6c80ae8393693d7c14084f169556aa7f94e395bc271bdabc253fd77b - 0.0% (130 Bytes)
[#006] sha256:b1956c346b66658764e1a707808e0edbbfc339be1a00269cfec5f11af3aba360 - 0.0% (172 Bytes)
[#007] sha256:1b01054eea605ab847cb6bc028881decbeb561dee664fb986d3256dcc4a06d2f - 0.01% (4.6 KB)
/bin/sh -c #(nop) ADD file:b828bc14bc5ff03c8f7310fe0aed6ac5df19a393622d5d1d779a523234d07c0a in /
2022-08-09 17:38:39 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-06 22:58:32 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-10-06 22:58:33 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-06 22:58:34 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-06 23:07:22 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-10-06 23:07:23 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.8
2022-10-06 23:07:24 UTC/bin/sh -c #(nop) ENV PG_SHA256=73876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
2022-10-06 23:11: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-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-06 23:11:01 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2022-10-06 23:11:02 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-06 23:11:03 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-06 23:11:04 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-06 23:11:05 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-06 23:11:07 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-06 23:11:07 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-06 23:11:08 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-06 23:11:09 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-06 23:11:10 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-07 01:21:00 UTC
79.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_SHA25673876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
PG_VERSION13.8
[#000] sha256:213ec9aee27d8be045c6a92b7eac22c9a64b44558193775a1a7f626352392b49 - 3.37% (2.68 MB)
[#001] sha256:40ab741cca09cae3efd0bccbe57183973b177cda2b7f65d67078454dc1d97ba7 - 0.0% (1.26 KB)
[#002] sha256:c3636f308d36c203f3f75f1c294814f647b4641fc980b708edb341400491e6fc - 0.0% (149 Bytes)
[#003] sha256:8f4efbe60d5307e0f1dffff696fa7902cc356b972981232cbbaa49d7dd2f92da - 96.61% (76.7 MB)
[#004] sha256:3f840bfadbcd5507c1b70125283f705ed82911a871e7d714e353a0f1ebffc4b0 - 0.01% (8.82 KB)
[#005] sha256:b845ab606496d2190a7a96e5312b76fdc9ccb62833410f55aed24ce516a8603c - 0.0% (163 Bytes)
[#006] sha256:f5c81f774967f35b64132dafa4c80db5428099881b838281fec4154cc3c6a9c5 - 0.0% (193 Bytes)
[#007] sha256:4ea91c927b1adb4e6f1d9c463be4f33b49c40fdfaa5bea29914c9a883d0450d2 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:2a949686d9886ac7c10582a6c29116fd29d3077d02755e87e111870d63607725 in /
2022-08-09 17:19:53 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-07 01:10:45 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-10-07 01:10:45 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-07 01:10:45 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-07 01:17:50 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-10-07 01:17:50 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.8
2022-10-07 01:17:50 UTC/bin/sh -c #(nop) ENV PG_SHA256=73876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
2022-10-07 01:20:57 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-07 01:20:58 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2022-10-07 01:20:58 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-07 01:20:58 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-07 01:20:59 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-07 01:20:59 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-07 01:20:59 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-07 01:20:59 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-07 01:20:59 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-07 01:20:59 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-07 01:21:00 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-07 16:32:39 UTC
77.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_SHA25673876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
PG_VERSION13.8
[#000] sha256:9506b835437abb4d8ba1683e00c500b8f77e1975e930b356fbb72f2dbdc274d9 - 3.21% (2.49 MB)
[#001] sha256:e4a97f44d5468b1977fffbbe13f6ea3bd6c5e69dd42ec5115a4c24e3269e14d1 - 0.0% (1.26 KB)
[#002] sha256:369971d6642d8d215945973b41cf0d2d39bcc95648a5615067e1453a0b350063 - 0.0% (149 Bytes)
[#003] sha256:1d17098250b3dd6893763ffb09a22141ca5aa52ee7b4c3ac97ced3f87b16e878 - 96.77% (75 MB)
[#004] sha256:505d8dcb143085e9909cb94e6b573a6b5c27c1f5ab4012de8d1d241cdfc83af7 - 0.01% (8.81 KB)
[#005] sha256:561a7f7c03c8c3bad2ccd58966c6e89b4a24fdea936552762d985572d5d26680 - 0.0% (160 Bytes)
[#006] sha256:8b0f1ab3afe60b6fe52192b8c712c2946479c4cb95af61ef9fa28be2d8bd59f0 - 0.0% (194 Bytes)
[#007] sha256:38bafe6ed539fa7b825ca5c26177973b5ebbe8ded5fb404324216ebaa346fd56 - 0.01% (4.6 KB)
/bin/sh -c #(nop) ADD file:e8733e8cc0a81e15ca4041760b6e27392c34171512d34405a9b262b1fff5c687 in /
2022-08-09 17:49:22 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-07 15:56:27 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-10-07 15:56:28 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-07 15:56:28 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-07 16:21:16 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-10-07 16:21:16 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.8
2022-10-07 16:21:16 UTC/bin/sh -c #(nop) ENV PG_SHA256=73876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
2022-10-07 16:32:36 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-07 16:32:36 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2022-10-07 16:32:37 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-07 16:32:37 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-07 16:32:38 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-07 16:32:38 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-07 16:32:38 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-07 16:32:38 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-07 16:32:39 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-07 16:32:39 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-07 16:32:39 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-25 22:38:10 UTC
72.9 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_SHA25673876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
PG_VERSION13.8
[#000] sha256:c6556b3b6858c6fa1e328377cc2c4becdc9cd1bc3e7302aa7299936522cf93ba - 3.16% (2.31 MB)
[#001] sha256:3bf2f923de8a6d683ecedaed891a43887abcbed8db58206db4fb2575bf657302 - 0.0% (1.23 KB)
[#002] sha256:4f04bc58499919864f6f536832fc3a4bb2f5f2ff4acacd90b4dcad1f7359c2a8 - 0.0% (115 Bytes)
[#003] sha256:75cff81d834c9aa533b53e14dcc5ee59bdabc40c04c3aee5c898d606857f73eb - 96.82% (70.6 MB)
[#004] sha256:781fc3860163a38e3e72a9aa740c1b87de12cdcd45473b8190fc2cdcbad300d0 - 0.01% (8.81 KB)
[#005] sha256:94cd206bbad73cd47fce2cccdce3880265b4b75dcf70638ce0659a04aa2b591c - 0.0% (129 Bytes)
[#006] sha256:29a7c9c3254674030cdf4a69a3ed2e5385f4a68c7a27b2e612946ec5f997b200 - 0.0% (163 Bytes)
[#007] sha256:0330b82d0d54c6ecc0a43e3de13bd3fd694efe13f28682b2ab7daa36f87420f0 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:75521fe16320b193092588f6f31052c85e736965ceb11673de18bd14965a45e6 in /
2022-08-09 16:57:44 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-25 22:00:42 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-10-25 22:00:42 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-25 22:00:43 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-25 22:34:57 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-10-25 22:34:57 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.8
2022-10-25 22:34:57 UTC/bin/sh -c #(nop) ENV PG_SHA256=73876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
2022-10-25 22:38: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-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-25 22:38:09 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2022-10-25 22:38:09 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-25 22:38:09 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-25 22:38:10 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-25 22:38:10 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-25 22:38:10 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-25 22:38:10 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-25 22:38:10 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-25 22:38:10 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-25 22:38:10 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-25 20:12:38 UTC
78.3 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_SHA25673876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
PG_VERSION13.8
[#000] sha256:9b18e9b68314027565b90ff6189d65942c0f7986da80df008b8431276885218e - 3.3% (2.58 MB)
[#001] sha256:752ef06c81fe7449fde5d3c51093143caf7718e55a6c850a9f6da967337e7f6e - 0.0% (1.26 KB)
[#002] sha256:a5785b250d180840d75ff583b3b43d6e72af5ccc4de8472237e952a41982163b - 0.0% (149 Bytes)
[#003] sha256:e0d5da83572a94b687aca2bc28fac75d730f0c67837d8bc3fb7a396790dfd347 - 96.68% (75.7 MB)
[#004] sha256:50a5c134293b6afad9386226eb5b6268e43d6671481bb60b87699c731859f157 - 0.01% (8.81 KB)
[#005] sha256:9684941079e5090942badd8a9f38b1e31d2f6a045064eb46083d4793f2f7205b - 0.0% (161 Bytes)
[#006] sha256:046392f18c212bfe8f130cdadc89e6e66502a0749a1db142e8fc4dbadd0cccb5 - 0.0% (195 Bytes)
[#007] sha256:4e34a2b98dade1ebaa4838e29ea3fe4b9b3068aa8b820a09b115d0725a4096b6 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:960fd469d48cf79ba14bbda71f3192074ed860c112e30e0bc92bff3440cb45ab in /
2022-08-09 17:39:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-25 20:04:17 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-10-25 20:04:17 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-25 20:04:17 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-25 20:10:18 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-10-25 20:10:18 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.8
2022-10-25 20:10:18 UTC/bin/sh -c #(nop) ENV PG_SHA256=73876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
2022-10-25 20:12:36 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-25 20:12:37 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2022-10-25 20:12:37 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-25 20:12:37 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-25 20:12:38 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-25 20:12:38 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-25 20:12:38 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-25 20:12:38 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-25 20:12:38 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-25 20:12:38 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-25 20:12:38 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-07 02:39:59 UTC
85.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_SHA25673876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
PG_VERSION13.8
[#000] sha256:c79e5d1a8c89b87020a754c8a5c8370faaa37bfb5bca1d8af66770d522ef1caf - 3.14% (2.67 MB)
[#001] sha256:2c9886199ad194bb654781346f2cd4cce2905c90d143f8d77e5869dada1864c5 - 0.0% (1.26 KB)
[#002] sha256:6dca1982ca555c7b16501b90c9ee856d6d3a531258352fd09a5db82ef45f9984 - 0.0% (148 Bytes)
[#003] sha256:5e1661032abb21800100ceeaf75d275c18f6b126fcf13941f946dcba40a5e1f3 - 96.84% (82.5 MB)
[#004] sha256:2b1cefc5d33648b92e0ce6f350219747ef38690fdf0b2ffd28f79674daac4d31 - 0.01% (8.82 KB)
[#005] sha256:c7fc80eb9241baab60c30f04b1777a10d2a51f70edf032d82bbb2e23e2cc2263 - 0.0% (163 Bytes)
[#006] sha256:4467b9d39cd4c64d4965350a7e0fad8d19de0ae12c832e285402a2ef9aaf1bb1 - 0.0% (193 Bytes)
[#007] sha256:ba93de1f73de98c65980a18a87b17549a36de5ecb4d2ce6bfa73e34640c35ece - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:66b351666e41834033d334aeb3dc6998dea77aa22e8e254028c923fee67a41a8 in /
2022-08-09 17:17:10 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-07 02:25:58 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-10-07 02:25:59 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-07 02:26:00 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-07 02:35:45 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-10-07 02:35:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.8
2022-10-07 02:35:46 UTC/bin/sh -c #(nop) ENV PG_SHA256=73876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
2022-10-07 02:39:51 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-07 02:39: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
2022-10-07 02:39:56 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-07 02:39:56 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-07 02:39:57 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-07 02:39:58 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-07 02:39:58 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-07 02:39:58 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-07 02:39:59 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-07 02:39:59 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-07 02:39:59 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-07 03:49:00 UTC
80.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_SHA25673876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
PG_VERSION13.8
[#000] sha256:790c84f1f3409eab952345157df7fa804ba6b5f06d4ceb6f2dfa3c6de2064397 - 3.07% (2.47 MB)
[#001] sha256:8e890de774640a358825541264ef983fef765c29d72f21038ede1ac41c85e6fd - 0.0% (1.26 KB)
[#002] sha256:310de1aaaef21df2d67997a7dfe754c704ddf70ece33ada85f4f2dd0a4e02359 - 0.0% (149 Bytes)
[#003] sha256:bee23d1dbde8ba02e9e7ca637dcd9c2a12c9aeae4b3a404e7b721e9ec98d82be - 96.91% (77.9 MB)
[#004] sha256:80a40dda4b40454d327d9fcd30c69a782e02de96fe3d63d1c55405a99c448cf4 - 0.01% (8.81 KB)
[#005] sha256:00024d9ca4ec20b3e2f3f77293f83632ca829d87400f22057e3a04d0e2a756b7 - 0.0% (163 Bytes)
[#006] sha256:0d4b51dd0c79bf6afeb63e30534a6a77ce57687ca4817214dd8b3383f588687e - 0.0% (195 Bytes)
[#007] sha256:17b9494508991569b0369da386a4059ea2f1fb7f9c537c3124cfa346d86ea4f2 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:b43a065471bc4711415d3c67cd5b6559b0c48ee7ffe9761530477cf457a6dc34 in /
2022-08-09 17:41:46 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-10-07 03:35:39 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-10-07 03:35:39 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-07 03:35:41 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-07 03:44:57 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-10-07 03:44:57 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.8
2022-10-07 03:44:58 UTC/bin/sh -c #(nop) ENV PG_SHA256=73876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded
2022-10-07 03:48: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 ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-10-07 03:48:56 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2022-10-07 03:48:57 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-07 03:48:57 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-07 03:48:58 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-07 03:48:59 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-07 03:48:59 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-07 03:48:59 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-07 03:49:00 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-07 03:49:00 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-07 03:49:00 UTC/bin/sh -c #(nop) CMD ["postgres"]