2022-01-04 01:40:38 UTC
20.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
PG_VERSION9.6.24
[#000] sha256:e6889e0d66307a4b916fc844f2dcbc03245c63bc4189dd3e88126d9dcf2f9231 - 13.38% (2.7 MB)
[#001] sha256:3af56146d51f459d9baa843fcf88ab0b80c1c9de99248bc2163f19197ba95d05 - 0.01% (1.25 KB)
[#002] sha256:87a14412d0e45405abe51e591c8467d465e5f91db0600bf8b9120d9c6f15217c - 0.0% (149 Bytes)
[#003] sha256:036c8d88755da68775d230879ce2fb3dc8d2e03352afb0dbc0900f78999a163c - 86.55% (17.4 MB)
[#004] sha256:dafd363ea4227d662050375308d13cf0e6030aed1a13c29ca40ddcfa157e82bd - 0.04% (7.35 KB)
[#005] sha256:b7519af586b1d69f4deb8da0a2ed79ddc93d74e3fdd6cedb94ca3b47535bbfb6 - 0.0% (161 Bytes)
[#006] sha256:a82324004fee0851745526ea8a5a75140dcbe162f66910e4706c7b98eb1750e6 - 0.0% (195 Bytes)
[#007] sha256:6ea91e958919e487f87d9e91b2df68b87045e9fdff81cfc506361691bbf831d7 - 0.02% (4.62 KB)
[#008] sha256:ccd3aedd575b1d527676cdd95b108ee95f0c95ea801e6488e5bed6afb6a4edbe - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:b9a17131c440053f2f67e127b447645f25fd7de2d6caca42f569cafab6291855 in /
2021-11-24 20:53:48 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 02:41: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
2021-11-30 02:41:28 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 02:41:29 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 04:34:49 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-11-30 04:34:50 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.24
2021-11-30 04:34:50 UTC/bin/sh -c #(nop) ENV PG_SHA256=aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
2021-11-30 04:40:04 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 make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 04:40: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
2021-11-30 04:40:06 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 04:40:07 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 04:40:08 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 04:40:08 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:40:36 UTC/bin/sh -c #(nop) COPY file:cda82b5709f66a90b6babd661411ef1a87d0c9eeeae48253ec3248341658f54d in /usr/local/bin/
2022-01-04 01:40:37 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:40:37 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:40:37 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:40:38 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:40:38 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:20:53 UTC
19.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
PG_VERSION9.6.24
[#000] sha256:59bf1c3509f33515622619af21ed55bbe26d24913cedbca106468a5fb37a50c3 - 13.69% (2.69 MB)
[#001] sha256:c50e01d57241cf7ef93a91060f5eb0b895a4b443f20dc1ce5e77d441184a6dc2 - 0.01% (1.25 KB)
[#002] sha256:a0646b0f1eadaf0cd3fdb4c4490a69c4c7aed9b7ae10b24eb9005c59aa0b6e57 - 0.0% (148 Bytes)
[#003] sha256:912227b294eef53a0b3b659a249ff5d362559c5dd7fd8bd7fa4f77e9dc23baae - 86.24% (16.9 MB)
[#004] sha256:696b75eaa88eb8c35e16fe0800e0ea481a51be17ab42ab689ce486f632a51c3a - 0.04% (7.35 KB)
[#005] sha256:0d83746bb80be252099e8bdc0da91fb48140d0433e3d15eaaefebedf6b69461d - 0.0% (161 Bytes)
[#006] sha256:3a431a2253cd02965829d563f6181cf8d6e756f31dfe04ceb340edc589d82920 - 0.0% (194 Bytes)
[#007] sha256:24ff05c047601c3cedb7dd5d6a494b9648602a7bb7180fcb04b74e79ae67104b - 0.02% (4.61 KB)
[#008] sha256:587cf5e11ca1cd63b17de52d0ca5c065355f2301954bf46e275a2ba93216735e - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:9233f6f2237d79659a9521f7e390df217cec49f1a8aa3a12147bbca1956acdb9 in /
2021-11-24 20:19:40 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:59:34 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-11-30 04:59:34 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:59:35 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 05:40:27 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-11-30 05:40:27 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.24
2021-11-30 05:40:28 UTC/bin/sh -c #(nop) ENV PG_SHA256=aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
2021-11-30 05:46:39 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 05:46:41 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-11-30 05:46:42 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 05:46:42 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 05:46:43 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 05:46:43 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:20:51 UTC/bin/sh -c #(nop) COPY file:cda82b5709f66a90b6babd661411ef1a87d0c9eeeae48253ec3248341658f54d in /usr/local/bin/
2022-01-04 01:20:52 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:20:52 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:20:52 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:20:52 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:20:53 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:51:09 UTC
19.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
PG_VERSION9.6.24
[#000] sha256:e4a43de54da9e309482f6762f0c11f5f547cd8fd61a49c5f158453066162023e - 13.17% (2.51 MB)
[#001] sha256:a865398e355d4d5f58fd1b16748daf1827598bdf1ba26c1d38fa7c8370d6705c - 0.01% (1.25 KB)
[#002] sha256:d879fc486c1bcf6d31fd2a8a5a4bc14acf4cc6f2d73e99dbf611ea8532bf4685 - 0.0% (149 Bytes)
[#003] sha256:16ca90726bd903fe90838d5a7ba475a53e8833150e130cbba86581d9a1c55f4f - 86.76% (16.5 MB)
[#004] sha256:f2549e6a55626b4d0a845a0feb2d12fb52b0a41466b58a5de7ff53fb52517885 - 0.04% (7.35 KB)
[#005] sha256:a618fe02169697e7718a6b2f8b1eda534205faa6d3eac6ed21aa8aedf1417aa9 - 0.0% (161 Bytes)
[#006] sha256:8d10594da91485d3abab8a91bf902c44227e5d476902ce2734ac19c33caaee6e - 0.0% (194 Bytes)
[#007] sha256:fbc8c704cbc309f6323e666a4c1570fa46af8df2a5b3dc2b5098f1fc30e58823 - 0.02% (4.62 KB)
[#008] sha256:56dbd20fc65c706b53e7a359f0df19cc9abcc61e6a7f64e4e7022911eb83ac33 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:61137e0aa49ba06f57ac69466fe2fb116f580b5e6159d56f846b1d72c4a3c814 in /
2021-11-24 21:08:16 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:39:17 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-11-30 04:39:18 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:39:19 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 05:06:26 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-11-30 05:06:27 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.24
2021-11-30 05:06:27 UTC/bin/sh -c #(nop) ENV PG_SHA256=aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
2021-11-30 05:12:31 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 make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 05:12:33 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-11-30 05:12:35 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 05:12:35 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 05:12:37 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 05:12:37 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:51:06 UTC/bin/sh -c #(nop) COPY file:cda82b5709f66a90b6babd661411ef1a87d0c9eeeae48253ec3248341658f54d in /usr/local/bin/
2022-01-04 01:51:07 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:51:07 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:51:08 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:51:08 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:51:09 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:01:56 UTC
18 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
PG_VERSION9.6.24
[#000] sha256:5480d2ca1740c20ce17652e01ed2265cdc914458acd41256a2b1ccff28f2762c - 12.87% (2.32 MB)
[#001] sha256:f8f681d006162b865bd7dca8476d129c7fa1193b246ad8a598d27eb28769a6ac - 0.01% (1.25 KB)
[#002] sha256:c74eb577cd41aefd27e490e1cbe04812996920ee2af42f358c659d1bb8a40230 - 0.0% (149 Bytes)
[#003] sha256:5d6baeb1c8878d3e1abab3f69f4ca42be05b18fe095a6fae2385c8fcdbaa922a - 87.05% (15.7 MB)
[#004] sha256:18116710e91369a1e7a8a3affdfa98a688a5c1791d704cfc3fc66347993ffd17 - 0.04% (7.35 KB)
[#005] sha256:f3c45ee8313f8139371731d747bf0e856e6214e69f1caad563ec314b7571fcf5 - 0.0% (161 Bytes)
[#006] sha256:28ef760388ab0018419c5bc807ee6026473ae9d988a583a26a77cc7797344739 - 0.0% (195 Bytes)
[#007] sha256:fd13a0e3cb2d3f4461998626d54798184f40bd9b3f945819c9acc9afc6c67d01 - 0.02% (4.62 KB)
[#008] sha256:7dd8dacdb3d700223082f2ab5acf473c8895191769dee3fd406f652a7b59c415 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:ca436da5b0bfc9c0e2fc685533c6628918000c8fff109fe9a8da625b9a798002 in /
2021-11-24 21:42:11 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 07:45: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
2021-11-30 07:45:15 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 07:45:17 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 11:58:30 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-11-30 11:58:30 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.24
2021-11-30 11:58:31 UTC/bin/sh -c #(nop) ENV PG_SHA256=aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
2021-11-30 12:04:12 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 12:04:14 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-11-30 12:04:15 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 12:04:16 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 12:04:17 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 12:04:18 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:01:53 UTC/bin/sh -c #(nop) COPY file:cda82b5709f66a90b6babd661411ef1a87d0c9eeeae48253ec3248341658f54d in /usr/local/bin/
2022-01-04 01:01:54 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:01:55 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:01:55 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:01:56 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:01:56 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:42:48 UTC
19.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
PG_VERSION9.6.24
[#000] sha256:9b3977197b4f2147bdd31e1271f811319dcd5c2fc595f14e81f5351ab6275b99 - 13.32% (2.59 MB)
[#001] sha256:995a68b04f2b01f2160f500ef732a967a427af5da712fac9029eeecbc80af73d - 0.01% (1.23 KB)
[#002] sha256:e8a8bdf2ee5e8b95fdba44140b8595c955b8639595bcf5c0f15841330176d8e5 - 0.0% (115 Bytes)
[#003] sha256:5ff563b142cc67b968bc4cb647edf869ffac82a4b6aff5bc9f822a500026e5d1 - 86.61% (16.8 MB)
[#004] sha256:03921e76b2a1a895c6097b1267bfde824dd5b9e240e0ad265f8e730d89deeb2a - 0.04% (7.35 KB)
[#005] sha256:60b5f7f3ef23a5445182cc7e701a6cf368db092c4fd0577b40390ad24cd43a96 - 0.0% (129 Bytes)
[#006] sha256:8da25e6f3bb53710ee80fd03f776cbe06da5aacc8ccd081594ea306ce4a96346 - 0.0% (172 Bytes)
[#007] sha256:f2f86e4083ca19aec15f65363525ffd22de841204496855737b2c0d9a282c692 - 0.02% (4.61 KB)
[#008] sha256:3e2a0b3f05cc73880b0ffd5918ab817e0111f512ad010c5bccc4a254c85004db - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:df53811312284306901fdaaff0a357a4bf40d631e662fe9ce6d342442e494b6c in /
2021-11-24 20:39:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:27:18 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-11-30 04:27:19 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:27:20 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 05:16:00 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-11-30 05:16:01 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.24
2021-11-30 05:16:02 UTC/bin/sh -c #(nop) ENV PG_SHA256=aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
2021-11-30 05:19: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 make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 05:19:30 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-11-30 05:19:31 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 05:19:32 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 05:19:33 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 05:19:34 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:42:44 UTC/bin/sh -c #(nop) COPY file:cda82b5709f66a90b6babd661411ef1a87d0c9eeeae48253ec3248341658f54d in /usr/local/bin/
2022-01-04 01:42:44 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:42:45 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:42:46 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:42:47 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:42:48 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:20:46 UTC
20.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
PG_VERSION9.6.24
[#000] sha256:159b5dcb1717c815c76ff5ea1db730e18e8609c9090238e43282856db9e71f47 - 12.95% (2.68 MB)
[#001] sha256:f21143ce0a44ab602b12471d2a1cf95c5dcbc9d805bd8ede00e2766f24d295b5 - 0.01% (1.25 KB)
[#002] sha256:f5c45529781f9e932a9022851fca78ba53022920657aa14e0479b195cac40189 - 0.0% (149 Bytes)
[#003] sha256:cc4b0422694f624540e0e4af934b81b1daec99d7cf52accffa195fae452f654d - 86.98% (18 MB)
[#004] sha256:a6aeb049e740133cde6c6e215d481785e35130517ea79f7ad6996f73ec5a485b - 0.03% (7.35 KB)
[#005] sha256:73b0833d853f28072565f53343077d871a96442c16710cac4d4dd1cf7ec87079 - 0.0% (161 Bytes)
[#006] sha256:723d590965e15c6433a0926b6da4fceb6334afb05784386f10fe0d9ef04915b4 - 0.0% (194 Bytes)
[#007] sha256:c2d829a2c30492b376199633a33f488bc05e40d6a238fe0eff530ab211cd3c90 - 0.02% (4.62 KB)
[#008] sha256:909505ad0b91b28ae5d4fbe2df66274405a46eb3548f8cbdf14f44ed304ee019 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:57115dca2eb707f46b6301e75174e6aa316fb02ac28643b91429b75be51bd8c8 in /
2021-11-24 20:20:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:26:49 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-11-30 04:26:53 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:27:03 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 05:02:30 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-11-30 05:02:32 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.24
2021-11-30 05:02:35 UTC/bin/sh -c #(nop) ENV PG_SHA256=aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
2021-11-30 05:07: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 make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 05:07:12 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-11-30 05:07:21 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 05:07:24 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 05:07:30 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 05:07:32 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:20:32 UTC/bin/sh -c #(nop) COPY file:cda82b5709f66a90b6babd661411ef1a87d0c9eeeae48253ec3248341658f54d in /usr/local/bin/
2022-01-04 01:20:37 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:20:40 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:20:42 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:20:44 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:20:46 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:43:10 UTC
19.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
PG_VERSION9.6.24
[#000] sha256:d6baca485f3d0f7c77221be60fbef5db014a5ef9d8f53db4a310c947c690d189 - 12.67% (2.49 MB)
[#001] sha256:96844042cfb587d09e525bf6890e267412ad5971e27ece4faa02e82f6fda3c87 - 0.01% (1.25 KB)
[#002] sha256:826ee6a78ec06ec30a73acc9c0f2337f744b77da2931a6e0c1d3efb35d76cfe6 - 0.0% (149 Bytes)
[#003] sha256:2130432d59871cd32d2f0a3ec3d6fc9c3351b36f36c4bda5f694d28be3a27108 - 87.26% (17.1 MB)
[#004] sha256:2fd80ddfe1c4fafea7683578ad48f799f23967bfdb1d1e06b581c46a6e494c78 - 0.04% (7.35 KB)
[#005] sha256:04c7da98d17656b665d1bba3bb2af967155ffa4074a01e1dfb598651ef5d5886 - 0.0% (161 Bytes)
[#006] sha256:ee9b8b8239574fd49c2d0a5d26cca9c58e6dded59b89f57eea3111e71f137501 - 0.0% (193 Bytes)
[#007] sha256:c939b3e3c75605b025ea00ea6d30b739471a0bebc6da33776a9a8e0e8e80cb4e - 0.02% (4.61 KB)
[#008] sha256:75dfaa48e2f39ba327d6589b24d00f70715bf3f7ae1168af719af16738d61a3f - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:cd24c711a2ef431b3ff94f9a02bfc42f159bc60de1d0eceecafea4e8af02441d in /
2021-11-24 20:41:23 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 08:50:09 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-11-30 08:50:09 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 08:50:10 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 09:41:37 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-11-30 09:41:38 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.24
2021-11-30 09:41:38 UTC/bin/sh -c #(nop) ENV PG_SHA256=aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace
2021-11-30 09:44: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 make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-11-30 09:44:21 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-11-30 09:44:21 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 09:44:21 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 09:44:22 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 09:44:22 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:43:09 UTC/bin/sh -c #(nop) COPY file:cda82b5709f66a90b6babd661411ef1a87d0c9eeeae48253ec3248341658f54d in /usr/local/bin/
2022-01-04 01:43:09 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:43:09 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:43:10 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:43:10 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:43:10 UTC/bin/sh -c #(nop) CMD ["postgres"]