2022-11-12 05:20:00 UTC
82.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_SHA256d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
PG_VERSION11.18
[#000] sha256:0c10ccf9426f4a034c81b9e1a0fa81fc5cd957d8a4e0ea545ee33f4cd59f227b - 3.24% (2.68 MB)
[#001] sha256:90f626d509024dd2b86211343f5c48d9d474985c7b06659f7326485facc57938 - 0.0% (1.23 KB)
[#002] sha256:81abda2d9b25f5428f7e127cbcab1eeafcd89df71f38612747d1a3451622200c - 0.0% (115 Bytes)
[#003] sha256:e8d07122c5b657d25a4a124d4522c16692ab5ae10566448d7cda016a164ac73d - 96.74% (79.9 MB)
[#004] sha256:0b6bfb5a9f2673acb1311d95d7d585073466ba568c1686512daee80c434adb67 - 0.01% (7.8 KB)
[#005] sha256:823270ecad0d668dda87864d796da3e0f6bc3c6394b3372c9fab2a1d94c42078 - 0.0% (129 Bytes)
[#006] sha256:24c6dc90266baa61eca3f4530f4743575f6973e96805ba9f021bc70b68e8da3c - 0.0% (170 Bytes)
[#007] sha256:19b302f6fcfd2e808e712738668bb15bd32980e680d02410817961b5c624b181 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:561637cbdd23fdd69f555dbc938902d79be2b123eb244d2cfd35b337878b63df in /
2022-11-12 03:38:23 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-12 04:59:22 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-11-12 04:59:23 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-11-12 04:59:24 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-11-12 05:16:18 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-11-12 05:16:19 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.18
2022-11-12 05:16:20 UTC/bin/sh -c #(nop) ENV PG_SHA256=d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
2022-11-12 05:19:50 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-11-12 05:19: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-11-12 05:19:52 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-11-12 05:19:53 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-11-12 05:19:54 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-11-12 05:19:55 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-11-12 05:19:57 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-11-12 05:19:57 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-11-12 05:19:58 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-11-12 05:19:59 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-11-12 05:20:00 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-11-12 09:54:40 UTC
77.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_SHA256d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
PG_VERSION11.18
[#000] sha256:ca7dd9ec2225f2385955c43b2379305acd51543c28cf1d4e94522b3d94cce3ce - 3.45% (2.68 MB)
[#001] sha256:126ca7716c09ec1f08a62eb634b126706be0d1dff6b095919018aafad7d6bae4 - 0.0% (1.26 KB)
[#002] sha256:72a45366ffb3469a8a1b2f8dc27e3caeaefd52b94ff5f2e71164b55d3937d2f4 - 0.0% (148 Bytes)
[#003] sha256:43a99435899ac1732a8f78d94620322326472441f515296b80f4ae55e878538b - 96.54% (75 MB)
[#004] sha256:61f988412f50c9f1cb62b627c878b60385157eaf17277b22e99f7be82ba74975 - 0.01% (7.8 KB)
[#005] sha256:0d479c08494e4edc3f8470221e1c955bf43b4a89bd707edda1f887895b162960 - 0.0% (162 Bytes)
[#006] sha256:029c7e7258b5d2622e2b3d2d456af517f81e6680142d89d8d7aa423fb64ee851 - 0.0% (195 Bytes)
[#007] sha256:4dc0f17c4fdd494a195c07361be5611acbf1781b861a359908a4f53838e2d623 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:ceeb6e8632fafc657116cbf3afbd522185a16963230b57881073dad22eb0e1a3 in /
2022-11-12 04:19:23 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-12 09:38:15 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-11-12 09:38:15 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-11-12 09:38:15 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-11-12 09:51:41 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-11-12 09:51:41 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.18
2022-11-12 09:51:41 UTC/bin/sh -c #(nop) ENV PG_SHA256=d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
2022-11-12 09:54:37 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-11-12 09:54:38 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-11-12 09:54:38 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-11-12 09:54:38 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-11-12 09:54:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-11-12 09:54:39 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-11-12 09:54:39 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-11-12 09:54:39 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-11-12 09:54:39 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-11-12 09:54:40 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-11-12 09:54:40 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-11-12 06:20:25 UTC
75.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_SHA256d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
PG_VERSION11.18
[#000] sha256:9616ea8c1de4a90b1a50591336485e88ae5c2346e0d778bdbe69b00647bf8e39 - 3.29% (2.49 MB)
[#001] sha256:5a296e6154032cb8b812f0111fea91a511c4824a6e6394483500ac8410061766 - 0.0% (1.23 KB)
[#002] sha256:261766e6cf4488e0fb3c304ea5e4feaecf0863b6a5d879e52f66ed4f08524dd3 - 0.0% (115 Bytes)
[#003] sha256:6acfb4a8f43f36886b0d1f0e18d166399509c18cb71526b1a34d9aa53a960fa9 - 96.7% (73.4 MB)
[#004] sha256:2304e5598afcd2a49474d01247beb6f191de69017461d3159418526c6b1d9319 - 0.01% (7.8 KB)
[#005] sha256:03af88ef454ca5d3a21cb84f0355f45308c1ba54fd3e80520b6558d6018518d8 - 0.0% (129 Bytes)
[#006] sha256:fc1180ff89c3ccb6ce0401f8944564b0b0b40a2d34c8df18142a0fdb3bbe3274 - 0.0% (161 Bytes)
[#007] sha256:7c441ecec24bc4a1afb8b7d912fea6f10ad9b6e675c944360b94e4e8f185f530 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:493290ed8856fa13463defe63da0d30ab3de5dde042c87ef7c0701d66ebb8892 in /
2022-11-12 03:49:18 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-12 05:59:06 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-11-12 05:59:06 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-11-12 05:59:06 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-11-12 06:16:14 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-11-12 06:16:14 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.18
2022-11-12 06:16:14 UTC/bin/sh -c #(nop) ENV PG_SHA256=d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
2022-11-12 06:20:21 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; 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-11-12 06:20:22 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-11-12 06:20:23 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-11-12 06:20:23 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-11-12 06:20:24 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-11-12 06:20:24 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-11-12 06:20:24 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-11-12 06:20:25 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-11-12 06:20:25 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-11-12 06:20:25 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-11-12 06:20:25 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-11-12 07:21:54 UTC
71.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_SHA256d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
PG_VERSION11.18
[#000] sha256:e44ba29d168a7f7c9e914f3724614df9e070aa6ef9b9ba5c9004db3c071f403a - 3.23% (2.31 MB)
[#001] sha256:22b4513746304e4a2104984aadd05f402cf96d8459c95fd6629124d197b46b48 - 0.0% (1.23 KB)
[#002] sha256:91ab21e9a640890535a326b73ba123c164cab4c580a1c65a1a4d0193718662c7 - 0.0% (115 Bytes)
[#003] sha256:1eb735d3c2ab77410a41e2483b0eeb63ac8873de2a57b81ecbb3a61e2f4b05eb - 96.75% (69 MB)
[#004] sha256:196aeddb983b7516dbfd48ad43925762667d89ee23a737cca7baf391a9925542 - 0.01% (7.8 KB)
[#005] sha256:3790ea4c8a0a969a93d46318472af2e9751f549e4674d371e81c282bfcecb3ba - 0.0% (130 Bytes)
[#006] sha256:5b9e348d4f2b638f31834090ee8c0cdfac005ca6be68bb90aa1f3952417ceae7 - 0.0% (165 Bytes)
[#007] sha256:515a683e4973df12b93c7ca68e71e00f599e77f61acffc7ac0f7ca7360acf9e2 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:0b4a628f529226f5ec9d357ca63138bd2d22411a889c780ac8d395d761e07b2c in /
2022-11-12 03:57:24 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-12 07:03:07 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-11-12 07:03:07 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-11-12 07:03:08 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-11-12 07:18:30 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-11-12 07:18:30 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.18
2022-11-12 07:18:30 UTC/bin/sh -c #(nop) ENV PG_SHA256=d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
2022-11-12 07:21: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-11-12 07:21:52 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-11-12 07:21:53 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-11-12 07:21:53 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-11-12 07:21:53 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-11-12 07:21:54 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-11-12 07:21:54 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-11-12 07:21:54 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-11-12 07:21:54 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-11-12 07:21:54 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-11-12 07:21:54 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-11-12 05:43:59 UTC
76.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_SHA256d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
PG_VERSION11.18
[#000] sha256:6875df1f535433e5affe18ecfde9acb7950ab5f76887980ff06c5cdd48cf98f4 - 3.37% (2.58 MB)
[#001] sha256:0d7fcb69f233f922990063ef3c9f729d2762430e18efe4299efce9f71380466d - 0.0% (1.25 KB)
[#002] sha256:122972bf469797082ac5e297ad29c1cd30e38e85c834d0f5658c620acfe93df0 - 0.0% (149 Bytes)
[#003] sha256:75bf66de45f6238a77ff399cf2f5eeb7aa14ff1ec4e0795dccf201f0e31d3ab8 - 96.61% (74 MB)
[#004] sha256:08b7aa877cbe4fa5faf2be8426c67898103c1c50193f7239df95711859dcf05b - 0.01% (7.8 KB)
[#005] sha256:acd5fc5c67b159a02cf8b6e429cff7addf803b5e01c3369db2c2e7179e4d830d - 0.0% (161 Bytes)
[#006] sha256:624f90bd11f1bc15dbbecbae548808622e9d2cffd0cfd1097fea5d2f1e3ff057 - 0.0% (193 Bytes)
[#007] sha256:986d3004dcbd8f18e9f1e3cf5cb84c85dabc406f5d7d7738c82450206373869a - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:57d621536158358b14d15155826ef2dd4ca034278044111ec0aaf6717016e569 in /
2022-11-12 03:39:38 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-12 05:31: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-11-12 05:31:39 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-11-12 05:31:39 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-11-12 05:41:47 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-11-12 05:41:48 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.18
2022-11-12 05:41:48 UTC/bin/sh -c #(nop) ENV PG_SHA256=d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
2022-11-12 05:43: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-11-12 05:43: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-11-12 05:43:58 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-11-12 05:43:58 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-11-12 05:43:59 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-11-12 05:43:59 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-11-12 05:43:59 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-11-12 05:43:59 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-11-12 05:43:59 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-11-12 05:43:59 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-11-12 05:43:59 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-11-12 08:59:26 UTC
83.4 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_SHA256d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
PG_VERSION11.18
[#000] sha256:5c3a6ece62351976dfb4b56dc417aebd2a7dbda14ebac2737edd2ab43883553f - 3.2% (2.67 MB)
[#001] sha256:56da4b9579135b6c7c157b9a203276dc3bda92b07cfd9774575b98ccd489a880 - 0.0% (1.25 KB)
[#002] sha256:394696aa906f43f42c5323ab5ce94a1e778d3ec691a18dce088b0c4ffb49c521 - 0.0% (149 Bytes)
[#003] sha256:416b71aabc183003faec9c49726dc5e554a771bfedc3fa443d9c30f77f4596ea - 96.78% (80.7 MB)
[#004] sha256:51f44ed7f8481954403f91056bb9cf0e77644d0caaf967760a9fb072b9724dbf - 0.01% (7.8 KB)
[#005] sha256:b6cb71165e19043e4482ad54ba88b545906f0a5655fe345d4412ac821c58956a - 0.0% (161 Bytes)
[#006] sha256:464629ef9515d397cf602efc76e6cdc5a52cb2a15c4efbae08bf584cbe9da433 - 0.0% (193 Bytes)
[#007] sha256:e07720f96d234e4afa4859d6cbf0c631811d55f82343ff446b1b1ef78ca32118 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:6f7965319fe0caaea57086835c0c2212284c6850f33e3c4d522c758e43acbc98 in /
2022-11-12 04:16:31 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-12 08:36:31 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-11-12 08:36:31 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-11-12 08:36:33 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-11-12 08:55:17 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-11-12 08:55:17 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.18
2022-11-12 08:55:18 UTC/bin/sh -c #(nop) ENV PG_SHA256=d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
2022-11-12 08:59:18 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-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-11-12 08:59:22 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-11-12 08:59:23 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-11-12 08:59:23 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-11-12 08:59:24 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-11-12 08:59:24 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-11-12 08:59:25 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-11-12 08:59:25 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-11-12 08:59:25 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-11-12 08:59:25 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-11-12 08:59:26 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-11-12 06:53:38 UTC
78.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_SHA256d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
PG_VERSION11.18
[#000] sha256:cff16a5ffe2df97bc1d10b021c5ceb98bdb36a18a1d70395590444ac204a9b2b - 3.14% (2.47 MB)
[#001] sha256:89b57beea38896d0497593e6d919726e650e9846108cd34f21e89e4ec0699d16 - 0.0% (1.26 KB)
[#002] sha256:f0167114fe0bbde42a13a9c6a8dd5f0bc8ca4085d928fe31ed5098c9771bf955 - 0.0% (149 Bytes)
[#003] sha256:30bcf7c2d10e6c2dd9289c42aa9e2b6e90c21d49787ae8c2f16453a1f9468233 - 96.84% (76.2 MB)
[#004] sha256:10deb82a7c8065fb13b87d6c8b77d8bb5ce66abd5b59258045fb36b823ef4668 - 0.01% (7.8 KB)
[#005] sha256:8c966194222a6dd3b6ea580a842b95a7eb4487cd5b162b58e330a82a8ea8162f - 0.0% (161 Bytes)
[#006] sha256:44834c8497899ceccd57f968d08d40930b7f583fff900da6bbf7529a4cda84be - 0.0% (193 Bytes)
[#007] sha256:c09f90c0874d611cddce6e9068739754d1a238743571f7872e5ae8f0103ecf75 - 0.01% (4.6 KB)
/bin/sh -c #(nop) ADD file:b78ae95cbacd853e398f187adaf3be51d9e301a66de8f7a4b6c60a9733075cb5 in /
2022-11-12 03:42:06 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-12 06:35:55 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-11-12 06:35:55 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-11-12 06:35:56 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-11-12 06:50:30 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-11-12 06:50:30 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.18
2022-11-12 06:50:31 UTC/bin/sh -c #(nop) ENV PG_SHA256=d24f20efc52e918acfbcca21e9cea28e0e263b846a0c408fcfac3b3c4a0f7504
2022-11-12 06:53:32 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-11-12 06:53: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-11-12 06:53:36 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-11-12 06:53:37 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-11-12 06:53:37 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-11-12 06:53:37 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-11-12 06:53:37 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-11-12 06:53:38 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-11-12 06:53:38 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-11-12 06:53:38 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-11-12 06:53:38 UTC/bin/sh -c #(nop) CMD ["postgres"]
Please be careful as this will not just delete the reference but also the actual content!
For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.