2022-05-18 02:00:52 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_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:73b28a5955ec7fb46f2cf0434e4901a889f7dda3f8c9ec496300feb256c7eda8 - 3.3% (2.69 MB)
[#001] sha256:440ad7c551279d9f14743cb1f9d3d9c5e5c62431537e922e055ad3d5a9e98ddd - 0.0% (1.23 KB)
[#002] sha256:58f96dc8fa9ed931f47d352471b5f575a1bc1895361bfa37f9b002333ca26c1b - 0.0% (115 Bytes)
[#003] sha256:48d9004b824c71264abad83b10c4c7f1e08a7d8de22aea180a8585eff6a7356b - 96.68% (78.7 MB)
[#004] sha256:0ba0af7247efbf54e904171089dddbf14bb04b145511c1afb06798a539b2a22a - 0.01% (7.8 KB)
[#005] sha256:b4f7711917dee37a651768fd3420aa7622cdf27e6fde06ee45acb7377ae54afb - 0.0% (129 Bytes)
[#006] sha256:0e2458d9b613d4c8c9178e80e0ca44b420a77b12890f8e8b0762b9825f8bd341 - 0.0% (172 Bytes)
[#007] sha256:b0a852d0920190e40523e2485aea32f7a3e6581e56a5b210e29bb4d7038ba35e - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:7d51a0f8691eb78c9062fd31984423a93d276a67b4ed5d1a706e1c2cd9fea23a in /
2022-04-04 23:38:25 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 04:18:33 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-04-05 04:18:34 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 04:18:35 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 04:30:01 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-05-18 01:57:32 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-05-18 01:57:33 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-05-18 02:00:43 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-05-18 02:00:43 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-05-18 02:00:44 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-05-18 02:00:45 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-05-18 02:00:46 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-05-18 02:00:47 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-05-18 02:00:49 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-05-18 02:00:49 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-05-18 02:00:50 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-05-18 02:00:51 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-05-18 02:00:52 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-05-18 00:51:09 UTC
76.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:df9b9388f04ad6279a7410b85cedfdcb2208c0a003da7ab5613af71079148139 - 3.49% (2.68 MB)
[#001] sha256:7902437d3a1288bbe38562c760e4e6b155617991e782f33ddd81da3f4f88305a - 0.0% (1.25 KB)
[#002] sha256:709e2267bc988471d02df06f7a9f133dd3195af6da61c0869b0555f72f0c1e4e - 0.0% (149 Bytes)
[#003] sha256:75309710424976a41ee96af5630a80f6c6183c42ff40178b284cae4782bbaaad - 96.49% (74.2 MB)
[#004] sha256:bfd2b9f75b5f4ef0881d615be6c3793db891c9307f854ddc153e53c769e78d87 - 0.01% (7.8 KB)
[#005] sha256:7b2fd7865ee4c424aab92d66063262175018192c3ce88f4e57af428fc6ad9824 - 0.0% (161 Bytes)
[#006] sha256:3bc9aea657ef69950d23686e0e8d683a8ac744f1d2902a83ceba6f43de907769 - 0.0% (195 Bytes)
[#007] sha256:b0214fb8cdb3c16d53fbb21473b081cd0b92120b910523447c36ecb3c8eb5aa2 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:5d673d25da3a14ce1f6cf66e4c7fd4f4b85a3759a9d93efb3fd9ff852b5b56e4 in /
2022-04-05 00:19:59 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 07:24: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-04-05 07:24:39 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 07:24:40 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 07:39:35 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-05-18 00:47:58 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-05-18 00:47:58 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-05-18 00:51:06 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-05-18 00:51:07 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-05-18 00:51:08 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-05-18 00:51:08 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-05-18 00:51:08 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-05-18 00:51:08 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-05-18 00:51:09 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-05-18 00:51:09 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-05-18 00:51:09 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-05-18 00:51:09 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-05-18 00:51:09 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-05-18 02:24:12 UTC
74.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:c319b1fc4ed70b8241a7ce6ac0c4015d354bf5cf8c01eb73c50b6709c0c46e49 - 3.35% (2.5 MB)
[#001] sha256:8cb8e77db967e9917c31ab0acb275de8ef6e22c214dfe4e99c2f6aeb9c10b299 - 0.0% (1.25 KB)
[#002] sha256:2d6281d8a0ebe004d81faf000876292bc4f792eb730ac75d51aaeca917db6eb0 - 0.0% (148 Bytes)
[#003] sha256:f4a5c500f58ceb129fbe4d2a6a59be4e66674dfa00819020fffa5992a9f8a1b9 - 96.63% (72.1 MB)
[#004] sha256:73257bf824976ab7b2ebef12fc99fa3dacf4344db71992285e81536dcfcb1981 - 0.01% (7.8 KB)
[#005] sha256:0f13ae532278c98890529cb89615324c4187906fac3a6ff181e880530bcfe9b6 - 0.0% (162 Bytes)
[#006] sha256:0f8122cd852cb6537a846783e599b9ca1daae8fc2bfd306925c224fc2296c444 - 0.0% (194 Bytes)
[#007] sha256:b84abdbdc9aeffb147099d3fa9c3ed496d61c6e06b7da9abc1626d16ec058437 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:159dcddaab900372df882a4e94615ed84250e9cea3e74bc0479d98280342f596 in /
2022-04-04 23:49:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 06:44:13 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-04-05 06:44:13 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 06:44:15 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 07:00:28 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-05-18 02:18:40 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-05-18 02:18:41 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-05-18 02:24:02 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-05-18 02:24:05 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2022-05-18 02:24:07 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-05-18 02:24:07 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-05-18 02:24:09 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-05-18 02:24:09 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-05-18 02:24:10 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-05-18 02:24:10 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-05-18 02:24:11 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-05-18 02:24:11 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-05-18 02:24:12 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-05-18 04:41:05 UTC
70.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:57fb4b5f1a47c953ca5703f0f81ce14e5d01cf23aa79558b5adb961cc526e320 - 3.3% (2.31 MB)
[#001] sha256:8a73a72bdda5eae4bf93e48ab5614ce664c8d55a850cc23684a669ac50d7c562 - 0.0% (1.25 KB)
[#002] sha256:900cc3f9e3fa7beceaf45b2dd8fd89c500fa73defa872eeafea1769d75770d73 - 0.0% (149 Bytes)
[#003] sha256:7e462b834c89a5e54518cfa5dd1a26f425275c336a1fb6140021a8c11c2cac0b - 96.69% (67.8 MB)
[#004] sha256:58b94f04f94b8096e0ce232b94b424da101f9318ede962d4bfc9aab28aea7472 - 0.01% (7.81 KB)
[#005] sha256:17c1e4fe3c39247286250da6aa5f2dc3f919bb5d1b0c72c07225b80f89b9b5d4 - 0.0% (161 Bytes)
[#006] sha256:4c466f51b067020d3c66d4318c0eba67a8a50183981aca33f90ca4cbd6809c90 - 0.0% (195 Bytes)
[#007] sha256:c9786dc5774b1ab8c339b855abe9e613018ecab7b3515a46561a97e4c6cf6dc1 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:20f8cdddc53a4a8bd78945fc32fe08e9f80ab3b16dc20a9aa4ba73b79f2bc71c in /
2022-04-04 23:57:35 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 10:40:04 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-04-05 10:40:05 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 10:40:06 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 10:56:10 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-05-18 04:36:23 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-05-18 04:36:23 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-05-18 04:40:56 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-05-18 04:40:59 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-05-18 04:41:00 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-05-18 04:41:01 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-05-18 04:41:02 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-05-18 04:41:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-05-18 04:41:03 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-05-18 04:41:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-05-18 04:41:04 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-05-18 04:41:04 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-05-18 04:41:05 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-05-18 01:46:03 UTC
75.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_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:9981e73032c8833e387a8f96986e560edbed12c38119e0edb0439c9c2234eac9 - 3.42% (2.59 MB)
[#001] sha256:9998735be53b82d4d93cc72813622118271d565b9576e178c1cf196b949b56de - 0.0% (1.23 KB)
[#002] sha256:51338f5c9ae13e18e64d58b7ceacd16d0004c01ea9a50e77307e9c26794559a5 - 0.0% (115 Bytes)
[#003] sha256:ffe2e73641a505476cfd9e8a24d5c3336eb94c43dee080cae1e70d0d537cf308 - 96.56% (73.1 MB)
[#004] sha256:d39c4e603c1363944c9e5b205642f490979c51b3722856a356775f54e7fbac3f - 0.01% (7.8 KB)
[#005] sha256:09c6c9dd3048c38b9ed1478c81e8a98bce58a933c5b0c1f9c1729e047d8f9400 - 0.0% (128 Bytes)
[#006] sha256:58d802111c45b089da04f31906650a18584dcbdb81778e1d87e68e940aa25ab2 - 0.0% (173 Bytes)
[#007] sha256:8dd184baa56948c2ac3e90af93b65c6f27f9691adace03fa3d6775e02386e6b7 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:90e56af13188c7f0283d244a0d70b853d8bef8587a41f1da8eac3a2aba8964ef in /
2022-04-04 23:39:31 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 04:22:00 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-04-05 04:22:01 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 04:22:02 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 04:32:55 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-05-18 01:42:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-05-18 01:42:47 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-05-18 01:45:53 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-05-18 01:45:54 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-05-18 01:45:55 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-05-18 01:45:56 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-05-18 01:45:57 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-05-18 01:45:58 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-05-18 01:46:00 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-05-18 01:46:00 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-05-18 01:46:01 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-05-18 01:46:02 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-05-18 01:46:03 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-05-18 02:07:24 UTC
81.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_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:1877acf2d48ed8bcb5bd9756a95aca0c077457be7cf4fcef25807f4e9be88db1 - 3.27% (2.68 MB)
[#001] sha256:31d11c39eb8c6d4d061062b829221f428b3acf12369b01b6c042d6a713031c39 - 0.0% (1.26 KB)
[#002] sha256:cf0ff1d52fa2dd7453fce38e8e17b53514b2e104f4e6275e00196f88415a4398 - 0.0% (149 Bytes)
[#003] sha256:9ffe18d7accd0e6a1fe43c68dd873072308075f148feec9df332f911c7a28778 - 96.71% (79.2 MB)
[#004] sha256:e8607f54129f2cf5f6fc5ff87f12c0ff02acd11bacca3aeaa0fae58b35fa9a33 - 0.01% (7.8 KB)
[#005] sha256:cd6f8fc60abfe70ac83ebba4f5bc42d28238d0a5b868d72a824545a237b83b24 - 0.0% (162 Bytes)
[#006] sha256:3afdc2feba70078d58856bd3aee67b62132eb51a904095cddcc7f3f5fdc347bf - 0.0% (196 Bytes)
[#007] sha256:88e9213e737b8d1389dee468c63275dbf3c4a028eff65f3d29da0804a68b42eb - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:960cf6f9d3d1cfcb36c2d67dd4c3eaba7db1d0c7afe97968512248d7f234ad47 in /
2022-04-05 00:23:32 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 10:15:26 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-04-05 10:15:31 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 10:15:41 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 10:33:28 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-05-18 02:01:41 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-05-18 02:01:46 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-05-18 02:06:24 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-05-18 02:06: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-05-18 02:06:46 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-05-18 02:06:49 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-05-18 02:06:59 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-05-18 02:07:03 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-05-18 02:07:04 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-05-18 02:07:06 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-05-18 02:07:18 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-05-18 02:07:21 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-05-18 02:07:24 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-05-18 02:06:55 UTC
77.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:a27b630f446c3da376a30cf610e4bfa6847f8b87c83702c29e72b986f4e52d28 - 3.19% (2.48 MB)
[#001] sha256:101f526f514773cdbd93dcd2746d73e8dff7395f41467133c139fc629c7b8db0 - 0.0% (1.25 KB)
[#002] sha256:cc452154c8b825654930b9dae70ac27b9d54bbae8d0ff8bacc09468465e28a3a - 0.0% (149 Bytes)
[#003] sha256:92ef6a852baa7f63c8d0285bb6d419859b3bc5f483a5330bcbf5234f25dc9c3e - 96.79% (75.3 MB)
[#004] sha256:ccaf92cecf621b980c749efc798bae66212ffaec615d2824e32808aa8d144934 - 0.01% (7.8 KB)
[#005] sha256:4db2aaface6bc320a7878293cecf58632927ea6ce15daa8916671bd469e2ae56 - 0.0% (161 Bytes)
[#006] sha256:81d31ebf205f5140e0c497386883fb3be38e919d032f02e74df3696814d14181 - 0.0% (195 Bytes)
[#007] sha256:773d7830a0a1ab41adb87ee586a79c011a3cc8ab08c4a856d2db6c35891d6ba9 - 0.01% (4.58 KB)
/bin/sh -c #(nop) ADD file:f22e4b2be87d3c59c8c609acf79015938dc1fba0b26d7c1b59bd0fc36d63a906 in /
2022-04-04 23:41:39 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 06:55:28 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-04-05 06:55:28 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 06:55:29 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 07:05:19 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-05-18 02:03:18 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-05-18 02:03:18 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-05-18 02:06:40 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-05-18 02:06:49 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-05-18 02:06:51 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-05-18 02:06:51 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-05-18 02:06:52 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-05-18 02:06:53 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-05-18 02:06:53 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-05-18 02:06:54 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-05-18 02:06:54 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-05-18 02:06:54 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-05-18 02:06:55 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.