2022-10-08 00:36:04 UTC
86.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25611739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
PG_VERSION15rc2
[#000] sha256:6c0d3b419d848ea31ca748254611d5d5ce3b76e3d7bba520fd87400fbb75f3b9 - 3.1% (2.68 MB)
[#001] sha256:dcc0a2d06c52831b717922c82a177581313d43ff48fa82da49ed9fe0bf8002d8 - 0.0% (1.23 KB)
[#002] sha256:3642389f32b5996f507baab5859e392131d7bce3768326935a4dfb51d4932b5a - 0.0% (115 Bytes)
[#003] sha256:5f3468a5b79751156563806610d1ce2f0b7e281b6e824f1d6b119fbfc8c9012e - 96.89% (83.8 MB)
[#004] sha256:90c11699716e3af41f7e916107823bdaede19f872c6639d1f6106fa6cece43ce - 0.01% (9.23 KB)
[#005] sha256:99070ea1cf6a5a8bd67b5cd2e07c8771493ac158b92f02adae945f4f0645bced - 0.0% (129 Bytes)
[#006] sha256:91dbff24b1ddc7773a6106b2ea483f71a80eb4ee90dedf7f3e63831bc1671b64 - 0.0% (176 Bytes)
[#007] sha256:328751f4c0a4a9eaea3cd00dcfca13a33e7c6389daef077c03f1ba5d7ea3a097 - 0.01% (4.59 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 22:58:35 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-10-08 00:31:59 UTC/bin/sh -c #(nop) ENV PG_VERSION=15rc2
2022-10-08 00:32:00 UTC/bin/sh -c #(nop) ENV PG_SHA256=11739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
2022-10-08 00:35:55 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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-08 00:35: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-08 00:35:56 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-08 00:35:57 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-08 00:35:58 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-08 00:35:59 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-08 00:36:01 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-08 00:36:01 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-08 00:36:02 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-08 00:36:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-08 00:36:04 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-07 23:58:02 UTC
81.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25611739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
PG_VERSION15rc2
[#000] sha256:213ec9aee27d8be045c6a92b7eac22c9a64b44558193775a1a7f626352392b49 - 3.29% (2.68 MB)
[#001] sha256:40ab741cca09cae3efd0bccbe57183973b177cda2b7f65d67078454dc1d97ba7 - 0.0% (1.26 KB)
[#002] sha256:c3636f308d36c203f3f75f1c294814f647b4641fc980b708edb341400491e6fc - 0.0% (149 Bytes)
[#003] sha256:869aae2b6e9db9ca3986d13ca4435a4ceb382c3eddddf65c59c5b8bb47ba5f23 - 96.69% (78.7 MB)
[#004] sha256:fd31985ccf75ab7b4f901541c2cf8127a2cd141bf3b3200d8be957ddc60e32a2 - 0.01% (9.23 KB)
[#005] sha256:12718e61353e7b95d520249121230a1b7c415a9b191950f4171eb8f894216db9 - 0.0% (163 Bytes)
[#006] sha256:5feb37ea0b051a47839a3df1bcc1194ea357eabaaee06e0ef554861405d1db54 - 0.0% (195 Bytes)
[#007] sha256:d50b4fb0db53085f0267cb4bc28a084260499d3aaa109f7431c101e3bd7c253e - 0.01% (4.6 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:10:45 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-10-07 23:54:44 UTC/bin/sh -c #(nop) ENV PG_VERSION=15rc2
2022-10-07 23:54:44 UTC/bin/sh -c #(nop) ENV PG_SHA256=11739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
2022-10-07 23:57:59 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 23:58:00 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 23:58:00 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-07 23:58:00 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-07 23:58:01 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-07 23:58:01 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-07 23:58:01 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-07 23:58:01 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-07 23:58:01 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-07 23:58:01 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-07 23:58:02 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-08 06:29:06 UTC
79.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25611739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
PG_VERSION15rc2
[#000] sha256:9506b835437abb4d8ba1683e00c500b8f77e1975e930b356fbb72f2dbdc274d9 - 3.13% (2.49 MB)
[#001] sha256:e4a97f44d5468b1977fffbbe13f6ea3bd6c5e69dd42ec5115a4c24e3269e14d1 - 0.0% (1.26 KB)
[#002] sha256:369971d6642d8d215945973b41cf0d2d39bcc95648a5615067e1453a0b350063 - 0.0% (149 Bytes)
[#003] sha256:7589c435faaff11098c57aee38941f0fd48cf432087b53b1502db7060a10c8c5 - 96.85% (77.1 MB)
[#004] sha256:45377864ac1cca949f2c806bcd5f37606e564337a72e46ebb7c56a33bfe92e9b - 0.01% (9.23 KB)
[#005] sha256:1e321b072f75618f50e2101f752e9c3d04a4bbbc9091e02ad2d8d7406548e703 - 0.0% (161 Bytes)
[#006] sha256:c9380a57a1c2f1c3d552ca1718e0caccaaafe57d723414a8153bb865464b8a85 - 0.0% (194 Bytes)
[#007] sha256:e978232a3c3af30d522639f9a0383960d033295813eac70bd7908ca6043d5144 - 0.01% (4.59 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 15:56:28 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-10-08 06:19:29 UTC/bin/sh -c #(nop) ENV PG_VERSION=15rc2
2022-10-08 06:19:29 UTC/bin/sh -c #(nop) ENV PG_SHA256=11739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
2022-10-08 06:29: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-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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-08 06:29:04 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-08 06:29:05 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-08 06:29:05 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-08 06:29:05 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-08 06:29:06 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-08 06:29:06 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-08 06:29:06 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-08 06:29:06 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-08 06:29:06 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-08 06:29:06 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-08 02:36:33 UTC
74.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25611739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
PG_VERSION15rc2
[#000] sha256:c6556b3b6858c6fa1e328377cc2c4becdc9cd1bc3e7302aa7299936522cf93ba - 3.08% (2.31 MB)
[#001] sha256:23716398dc3ba779f4482a6e7971806ab6a5bce9d412a2144f846b2866610613 - 0.0% (1.26 KB)
[#002] sha256:12dba6af302fa9533ac8ce701b19ea917fbe4ce219fbe85e9a27088fb3ab9b1a - 0.0% (149 Bytes)
[#003] sha256:5b54fa9dd9953f54731fbc4209e2dcdebcf5a700fcc923d6bcd7e16267bd6087 - 96.9% (72.6 MB)
[#004] sha256:1fb8b8753a052f0978d567b89ecba36799c854202685d4d3be864c302f500d20 - 0.01% (9.23 KB)
[#005] sha256:99eb188a6114fbf5971b98c1f8a88dc1d2f608063760f0b44e0eeabcdb1f8934 - 0.0% (162 Bytes)
[#006] sha256:d024951ec27b876ed0f3a2ed130c8f1a72fb83b85e8f98d25d26141d8ce290c8 - 0.0% (193 Bytes)
[#007] sha256:3a14f9f239be633de774aff7f4bae45811159fc3b32c7a4d1d38a06e17575e54 - 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-08 02:26:56 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-08 02:26:56 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-08 02:26:56 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-08 02:26:56 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-10-08 02:26:56 UTC/bin/sh -c #(nop) ENV PG_VERSION=15rc2
2022-10-08 02:26:57 UTC/bin/sh -c #(nop) ENV PG_SHA256=11739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
2022-10-08 02:36:29 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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-08 02:36: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
2022-10-08 02:36:31 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-08 02:36:31 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-08 02:36:32 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-08 02:36:32 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-08 02:36:32 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-08 02:36:32 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-08 02:36:32 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-08 02:36:33 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-08 02:36:33 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-08 00:45:00 UTC
80.3 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25611739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
PG_VERSION15rc2
[#000] sha256:9b18e9b68314027565b90ff6189d65942c0f7986da80df008b8431276885218e - 3.22% (2.58 MB)
[#001] sha256:f5ac05eb62a0d312c6a5077cc54b5bca58a2c51aec7a337f3339c7084aaf153c - 0.0% (1.23 KB)
[#002] sha256:0fbbc8b450549bfae843e4365be3315e577270effad7c627affbd83b95e98bad - 0.0% (115 Bytes)
[#003] sha256:6c39ffa00f00dd7c43199d47d05f20aca1cd0aa5e6070d57ede09b465c3c695a - 96.76% (77.7 MB)
[#004] sha256:1a1a340d2ee473b4bb9e0605fbe91c248f11e5eaf21139d1e809c97f910972d4 - 0.01% (9.22 KB)
[#005] sha256:e3532787c419d25e61c6401dcc1f56226b985d3ad43533497da6af4fb5b64a41 - 0.0% (129 Bytes)
[#006] sha256:092cda714f3881c275e20c86a2f0d69e69bbebde9098c66b95c7b0a15b26be3b - 0.0% (176 Bytes)
[#007] sha256:07f287b5e4c606afd5331b7ce3c823001117f08abd835785b346ae27c9604e4c - 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-07 04:05:38 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 04:05:39 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-10-07 04:05:40 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-07 04:05:41 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-10-08 00:41:11 UTC/bin/sh -c #(nop) ENV PG_VERSION=15rc2
2022-10-08 00:41:11 UTC/bin/sh -c #(nop) ENV PG_SHA256=11739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
2022-10-08 00:44: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 lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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-08 00:44:51 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-08 00:44:52 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-08 00:44:53 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-08 00:44:54 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-08 00:44:55 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-08 00:44:57 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-08 00:44:57 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-08 00:44:58 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-08 00:44:59 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-08 00:45:00 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-08 00:02:28 UTC
87.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25611739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
PG_VERSION15rc2
[#000] sha256:c79e5d1a8c89b87020a754c8a5c8370faaa37bfb5bca1d8af66770d522ef1caf - 3.06% (2.67 MB)
[#001] sha256:2c9886199ad194bb654781346f2cd4cce2905c90d143f8d77e5869dada1864c5 - 0.0% (1.26 KB)
[#002] sha256:6dca1982ca555c7b16501b90c9ee856d6d3a531258352fd09a5db82ef45f9984 - 0.0% (148 Bytes)
[#003] sha256:54f84ba26038773c8a8508c4c19f3a1254d7d3342c253bbff72581ae3899fd37 - 96.92% (84.7 MB)
[#004] sha256:dd727fcc79a4db2579b281f9c6db94e190e5ef7a17248ff47d7bad366f3a97c3 - 0.01% (9.23 KB)
[#005] sha256:c7a0e611007d6e757c71656de47436a4c1488192ece3d2fb6bd9816d9c805c10 - 0.0% (161 Bytes)
[#006] sha256:e2d2c847815f6764165a99f02e1407440f1ff399655c619f52330bc432c4033d - 0.0% (194 Bytes)
[#007] sha256:7869509d80e17201ce509499a3cdef1eb050f4dd18270786d0434862a60b74b9 - 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:26:00 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-10-07 23:57:53 UTC/bin/sh -c #(nop) ENV PG_VERSION=15rc2
2022-10-07 23:57:54 UTC/bin/sh -c #(nop) ENV PG_SHA256=11739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
2022-10-08 00:02:19 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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-08 00:02:23 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2022-10-08 00:02:25 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-08 00:02:25 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-08 00:02:26 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-08 00:02:27 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-08 00:02:27 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-08 00:02:27 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-08 00:02:28 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-08 00:02:28 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-08 00:02:28 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-10-08 00:25:26 UTC
82.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25611739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
PG_VERSION15rc2
[#000] sha256:790c84f1f3409eab952345157df7fa804ba6b5f06d4ceb6f2dfa3c6de2064397 - 2.99% (2.47 MB)
[#001] sha256:8e890de774640a358825541264ef983fef765c29d72f21038ede1ac41c85e6fd - 0.0% (1.26 KB)
[#002] sha256:310de1aaaef21df2d67997a7dfe754c704ddf70ece33ada85f4f2dd0a4e02359 - 0.0% (149 Bytes)
[#003] sha256:f9ea36c603518ae0840ffd46af5bab0bbe1a0754f38f8613d5671de601d2f008 - 96.99% (80.1 MB)
[#004] sha256:ae215262e1808db624cf601bf433bb047239345fb5c40ff85e6ec6b4d406b444 - 0.01% (9.23 KB)
[#005] sha256:4cd232beae08388c82856432e7b4583883f1cb196a0056d680dc1bbd7a9aafa2 - 0.0% (161 Bytes)
[#006] sha256:52f4e864dc4397e63b0e2c6c662446d66b9f63a014a6d6ba586d05bf3bcff0c1 - 0.0% (193 Bytes)
[#007] sha256:cd7124fffee2484e7a56d41c34cf8b03cac447ed2123ceeff121d388fafe7c1d - 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:35:41 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-10-08 00:20:58 UTC/bin/sh -c #(nop) ENV PG_VERSION=15rc2
2022-10-08 00:20:59 UTC/bin/sh -c #(nop) ENV PG_SHA256=11739405e96699198733f4a0055362262c9c89f32d2e835e0b815687d700cc23
2022-10-08 00:25:16 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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-08 00:25:23 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2022-10-08 00:25:24 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-10-08 00:25:24 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-10-08 00:25:25 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-10-08 00:25:25 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-10-08 00:25:25 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-10-08 00:25:26 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-08 00:25:26 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-10-08 00:25:26 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-10-08 00:25:26 UTC/bin/sh -c #(nop) CMD ["postgres"]