2022-04-05 04:26:03 UTC
81.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
PG_VERSION13.6
[#000] sha256:73b28a5955ec7fb46f2cf0434e4901a889f7dda3f8c9ec496300feb256c7eda8 - 3.29% (2.69 MB)
[#001] sha256:440ad7c551279d9f14743cb1f9d3d9c5e5c62431537e922e055ad3d5a9e98ddd - 0.0% (1.23 KB)
[#002] sha256:58f96dc8fa9ed931f47d352471b5f575a1bc1895361bfa37f9b002333ca26c1b - 0.0% (115 Bytes)
[#003] sha256:376da3dd44e6aab15028707996b819212de90a72b4cbe9bd36d1d6373d0feb53 - 96.69% (79.1 MB)
[#004] sha256:65bab4242106e67955b3627adc7872f17c656151404eb0b2cb6c7577ec277c7c - 0.01% (8.81 KB)
[#005] sha256:2924e5b1aad6a1719cef89889cf60c12564dc9d4dc8cede3b29189a639f2303c - 0.0% (129 Bytes)
[#006] sha256:f0d5055dfba2d02cfa67486d51787463ef4b790aa6524d57ce66c9b9e6c306e1 - 0.0% (171 Bytes)
[#007] sha256:75013dea2f946751b39860fe6a8332b93a65963f2ae6a6fb39eba71154770676 - 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:22:36 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-04-05 04:22:36 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.6
2022-04-05 04:22:37 UTC/bin/sh -c #(nop) ENV PG_SHA256=bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
2022-04-05 04:25: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-04-05 04:25: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-04-05 04:25:55 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 04:25:56 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 04:25:57 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 04:25:58 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 04:26:00 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 04:26:00 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 04:26:01 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 04:26:02 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 04:26:03 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 07:34:37 UTC
77.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
PG_VERSION13.6
[#000] sha256:df9b9388f04ad6279a7410b85cedfdcb2208c0a003da7ab5613af71079148139 - 3.48% (2.68 MB)
[#001] sha256:7902437d3a1288bbe38562c760e4e6b155617991e782f33ddd81da3f4f88305a - 0.0% (1.25 KB)
[#002] sha256:709e2267bc988471d02df06f7a9f133dd3195af6da61c0869b0555f72f0c1e4e - 0.0% (149 Bytes)
[#003] sha256:5eec3cc5f8bc5d0b891174af1d873f587c84e4be2a6b664da19857f595a9cf2d - 96.5% (74.4 MB)
[#004] sha256:9caf1365e40315b4bf51d7e8b1d636ee383e17b03cf991efeb493f086bce59c4 - 0.01% (8.82 KB)
[#005] sha256:c4dbc2044e67ebd3fcb4664a9426afae05e8aa9e6a4d9823831817f59d179853 - 0.0% (161 Bytes)
[#006] sha256:db3eb34443f388cfbb42c10ea40348553a16e29d47779e4504d65b93ec97db4b - 0.0% (195 Bytes)
[#007] sha256:01a8f18ebd09b32fba3f736e44df5362b402ababec1ac060ce22e3570bf495aa - 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:29:49 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-04-05 07:29:49 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.6
2022-04-05 07:29:49 UTC/bin/sh -c #(nop) ENV PG_SHA256=bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
2022-04-05 07:34:34 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-04-05 07:34:35 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-04-05 07:34:36 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 07:34:36 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 07:34:36 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 07:34:37 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 07:34:37 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 07:34:37 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 07:34:37 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 07:34:37 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 07:34:37 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 06:54:48 UTC
75.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
PG_VERSION13.6
[#000] sha256:c319b1fc4ed70b8241a7ce6ac0c4015d354bf5cf8c01eb73c50b6709c0c46e49 - 3.33% (2.5 MB)
[#001] sha256:8cb8e77db967e9917c31ab0acb275de8ef6e22c214dfe4e99c2f6aeb9c10b299 - 0.0% (1.25 KB)
[#002] sha256:2d6281d8a0ebe004d81faf000876292bc4f792eb730ac75d51aaeca917db6eb0 - 0.0% (148 Bytes)
[#003] sha256:b49564ddd1c5e17ac52ba53213a5a1172a00aa41cf5bbc14bf584eab7da28fd8 - 96.65% (72.5 MB)
[#004] sha256:cd1e24dd9402f6f0ae775e776b155e71fc6d62163448d665431b60612e5fdd55 - 0.01% (8.82 KB)
[#005] sha256:ee57bc2adce22b9b1cf22fc95e9fb2868417aaa440f0e219b89b79c0cd1e9535 - 0.0% (163 Bytes)
[#006] sha256:b18d56be31d7d7cd9418c660af6e33696aae0dc0924b7605ec7fb440f1258445 - 0.0% (196 Bytes)
[#007] sha256:14f89876aada7a19d9d574122fb245de0b48d43ec5a7e7d7317e36190d04d0c9 - 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 06:49:41 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-04-05 06:49:42 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.6
2022-04-05 06:49:42 UTC/bin/sh -c #(nop) ENV PG_SHA256=bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
2022-04-05 06:54: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 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-04-05 06:54:42 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-04-05 06:54:44 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 06:54:44 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 06:54:46 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 06:54:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 06:54:46 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 06:54:47 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 06:54:47 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 06:54:48 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 06:54:48 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 10:50:23 UTC
70.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
PG_VERSION13.6
[#000] sha256:57fb4b5f1a47c953ca5703f0f81ce14e5d01cf23aa79558b5adb961cc526e320 - 3.27% (2.31 MB)
[#001] sha256:8a73a72bdda5eae4bf93e48ab5614ce664c8d55a850cc23684a669ac50d7c562 - 0.0% (1.25 KB)
[#002] sha256:900cc3f9e3fa7beceaf45b2dd8fd89c500fa73defa872eeafea1769d75770d73 - 0.0% (149 Bytes)
[#003] sha256:c841f76a17f8c4a3ad4c5391ec778a361ced6a6f4127cfe32847bf04a592d3e2 - 96.7% (68.3 MB)
[#004] sha256:0a8a2ac76b7a484c904e309ea544f2a8051c34015b5bea4821b13dd28ffeee1c - 0.01% (8.81 KB)
[#005] sha256:94fd148f5d18464977f5bf8649f3190f2d7573734356efedf1c38a2c617f4822 - 0.0% (160 Bytes)
[#006] sha256:7b7b6ec43f737ff19e8a0d0c6b262b9c447cf619873a246ea6a56d2968e7d9eb - 0.0% (195 Bytes)
[#007] sha256:6a02d4d7375db8989a92bf369a9022455e34ef55d41be7deffe4da4f25d79ab2 - 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:45:37 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-04-05 10:45:37 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.6
2022-04-05 10:45:38 UTC/bin/sh -c #(nop) ENV PG_SHA256=bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
2022-04-05 10:50:14 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-04-05 10:50:17 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-04-05 10:50:18 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 10:50:19 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 10:50:20 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 10:50:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 10:50:21 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 10:50:21 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 10:50:22 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 10:50:22 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 10:50:23 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 04:29:08 UTC
76 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
PG_VERSION13.6
[#000] sha256:9981e73032c8833e387a8f96986e560edbed12c38119e0edb0439c9c2234eac9 - 3.41% (2.59 MB)
[#001] sha256:9998735be53b82d4d93cc72813622118271d565b9576e178c1cf196b949b56de - 0.0% (1.23 KB)
[#002] sha256:51338f5c9ae13e18e64d58b7ceacd16d0004c01ea9a50e77307e9c26794559a5 - 0.0% (115 Bytes)
[#003] sha256:c1f5c810a8a0a9448ba49bf45e6ff07a0503e118350ecf485253961ee4a8b72d - 96.57% (73.4 MB)
[#004] sha256:27bebbdfda69966bc463225fa209ca6e34df3ececc92136fb7b8b51efb4481ed - 0.01% (8.81 KB)
[#005] sha256:bc54146968fe0738d2b6cc151f9704819cf27c3d9a352a658a2e57f0f73c5bfc - 0.0% (129 Bytes)
[#006] sha256:7b7e3fc8bc66b94febadf3e447e3eac438097ac1c1ed0244d9ab317f94bd1659 - 0.0% (170 Bytes)
[#007] sha256:c1071a9dfb7187025b0ea269f75cf45385474a335fecc5d08d3a0233ab222b02 - 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:25:47 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-04-05 04:25:48 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.6
2022-04-05 04:25:49 UTC/bin/sh -c #(nop) ENV PG_SHA256=bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
2022-04-05 04:28:58 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-04-05 04:28: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-04-05 04:29:00 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 04:29:01 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 04:29:02 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 04:29:03 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 04:29:05 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 04:29:05 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 04:29:06 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 04:29:07 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 04:29:08 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 10:27:20 UTC
82.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
PG_VERSION13.6
[#000] sha256:1877acf2d48ed8bcb5bd9756a95aca0c077457be7cf4fcef25807f4e9be88db1 - 3.26% (2.68 MB)
[#001] sha256:31d11c39eb8c6d4d061062b829221f428b3acf12369b01b6c042d6a713031c39 - 0.0% (1.26 KB)
[#002] sha256:cf0ff1d52fa2dd7453fce38e8e17b53514b2e104f4e6275e00196f88415a4398 - 0.0% (149 Bytes)
[#003] sha256:d140768cfbce788d884d05d22fcb9b10785ace3a98c59b7caa01602ade610fe9 - 96.72% (79.5 MB)
[#004] sha256:da4f0922320eb2c46215979fda9aaf885a051cae103cc2cdcefe9f12791501a9 - 0.01% (8.82 KB)
[#005] sha256:277872f700479a52d7b4053ef4d848fce8c2fbe89fd163e5eb5701fb442a6bad - 0.0% (161 Bytes)
[#006] sha256:494f1c5d360793e5db8a3d40474fb8c41540eab5b31dbfef273eda525f529ccc - 0.0% (194 Bytes)
[#007] sha256:ccbff232162adb92dfc55f02f80a46c3af3315c57eba0d9048a99f427f196144 - 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:22:05 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-04-05 10:22:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.6
2022-04-05 10:22:10 UTC/bin/sh -c #(nop) ENV PG_SHA256=bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
2022-04-05 10:26:41 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-04-05 10:26: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-04-05 10:26:53 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 10:26:55 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 10:27:02 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 10:27:05 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 10:27:07 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 10:27:11 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 10:27:15 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 10:27:18 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 10:27:20 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-05 07:01:42 UTC
78.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
PG_VERSION13.6
[#000] sha256:a27b630f446c3da376a30cf610e4bfa6847f8b87c83702c29e72b986f4e52d28 - 3.16% (2.48 MB)
[#001] sha256:101f526f514773cdbd93dcd2746d73e8dff7395f41467133c139fc629c7b8db0 - 0.0% (1.25 KB)
[#002] sha256:cc452154c8b825654930b9dae70ac27b9d54bbae8d0ff8bacc09468465e28a3a - 0.0% (149 Bytes)
[#003] sha256:cd35ae7d54d05d896765f1332040873b81b7dfb0050647c8fef714b455537f06 - 96.82% (75.9 MB)
[#004] sha256:b33c818ea5b2817d57cf5af3a5b8bd8ce6051a7ab43dc6be61c2548f52b75086 - 0.01% (8.81 KB)
[#005] sha256:434ee77c2479bc46ce8fb84d7da5de4373cda15e5fc86bdd8463d2d83d1c7be8 - 0.0% (163 Bytes)
[#006] sha256:69a311254b41e200c5ef934d9b36c2947b89aa1a2b5d5af2c603c019f671e3c7 - 0.0% (193 Bytes)
[#007] sha256:bb647629eea65d3fb6cea0ad4ded36164cb8816c50c46b442cc6c9909b4205b3 - 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 06:58:41 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2022-04-05 06:58:41 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.6
2022-04-05 06:58:41 UTC/bin/sh -c #(nop) ENV PG_SHA256=bafc7fa3d9d4da8fe71b84c63ba8bdfe8092935c30c0aa85c24b2c08508f67fc
2022-04-05 07:01:36 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 07:01:40 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-04-05 07:01:40 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 07:01:41 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 07:01:41 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 07:01:41 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 07:01:41 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 07:01:42 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 07:01:42 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 07:01:42 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 07:01:42 UTC/bin/sh -c #(nop) CMD ["postgres"]