docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:11.16-alpine
sha256:d8d1b3696105e761b116e28dd70912a8c46030fdbeb77f4220bfeab3b6871122
2022-08-09 21:13:48 UTC
82.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:6c0d3b419d848ea31ca748254611d5d5ce3b76e3d7bba520fd87400fbb75f3b9 - 3.24% (2.68 MB)
[#001] sha256:08c28e75c4cf92ef72dba94a55ce482cf503fbc49400e209e8c7f918c4c3b738 - 0.0% (1.23 KB)
[#002] sha256:5ec2f418c543a35f5a9bd4622f8333170308c8bfc39d60776c46f8cd414f6218 - 0.0% (115 Bytes)
[#003] sha256:e203be1368190659ff9dc2ebb44e95685fb93effea3c7aadfe7d6b5a63225bfc - 96.74% (79.9 MB)
[#004] sha256:09f96ef3d2786c509cf7142ce74468a10223ea646f44f5b80e4f72c723fd536a - 0.01% (7.81 KB)
[#005] sha256:549a9a6749f96e2c95fe4105716474bcb944db609f0ca8edc3927d8c80e6c416 - 0.0% (129 Bytes)
[#006] sha256:59de1e0f945378ff56a17031d397b407eedf38fe02fbc4a02e81d876c5f2e916 - 0.0% (170 Bytes)
[#007] sha256:79e65667bfce445176ac0c3469798712f1cf21de58bf112e302823628fff6bb6 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:b828bc14bc5ff03c8f7310fe0aed6ac5df19a393622d5d1d779a523234d07c0a in /
2022-08-09 17:38:39 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-09 20:53:15 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-08-09 20:53:16 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-08-09 20:53:17 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-08-09 21:10:09 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-08-09 21:10:10 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-08-09 21:10:11 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-08-09 21:13: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 icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-08-09 21:13:39 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-08-09 21:13:40 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-08-09 21:13:41 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-08-09 21:13:42 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-08-09 21:13:43 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-08-09 21:13:45 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-08-09 21:13:45 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-08-09 21:13:46 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-08-09 21:13:47 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-08-09 21:13:48 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:ca10fe3b90936f02e3818fe8cee1ca27ebfd3323e4b12c74d59aa2eb19ff6dce
2022-08-09 23:27:18 UTC
77.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:213ec9aee27d8be045c6a92b7eac22c9a64b44558193775a1a7f626352392b49 - 3.44% (2.68 MB)
[#001] sha256:85c3ef7cf9a6beeec8ff5b757e39ad71347ec77e891ad4d7784b14019583b223 - 0.0% (1.26 KB)
[#002] sha256:ac29cc04759ac7a5bf2b2df30b2272ec2eddee0feb4eedd6b50afe7056c3194b - 0.0% (147 Bytes)
[#003] sha256:f7e25a181ad25bd323ea4bc3f1c56b3e0331676a793540bfbbd52766e855c48c - 96.54% (75 MB)
[#004] sha256:f5e79ac42507e384ec77418e7d08aadf012616c20b90ae28731316fa195f3999 - 0.01% (7.8 KB)
[#005] sha256:2bdd4a234659d4724ab5fefd1c40fbbfe515eee75d7584de25a4b762d3e57db7 - 0.0% (163 Bytes)
[#006] sha256:e3a297bb7dde3b2b29dcbc8c5afb9c55612d836c249de2495e2ad1cb7ed2ac68 - 0.0% (194 Bytes)
[#007] sha256:483e7a9a863ab891d9b06792ec5adc29c30f78f0348d542a984165399662ccdc - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:2a949686d9886ac7c10582a6c29116fd29d3077d02755e87e111870d63607725 in /
2022-08-09 17:19:53 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-09 23:10:36 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-08-09 23:10:37 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-08-09 23:10:37 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-08-09 23:24:17 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-08-09 23:24:17 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-08-09 23:24:17 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-08-09 23:27:15 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-08-09 23:27:16 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-08-09 23:27:16 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-08-09 23:27:17 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-08-09 23:27:17 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-08-09 23:27:17 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-08-09 23:27:17 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-08-09 23:27:17 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-08-09 23:27:18 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-08-09 23:27:18 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-08-09 23:27:18 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:ad73b1a47b1b3e717588697fd3e46841f7e3a072405f23d32c2497440aec5519
2022-08-10 17:27:32 UTC
75.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:9506b835437abb4d8ba1683e00c500b8f77e1975e930b356fbb72f2dbdc274d9 - 3.29% (2.49 MB)
[#001] sha256:b2041638875c51a479e6eebba8c0987b5ffc3afbb9ae0e025c925dae805209f8 - 0.0% (1.25 KB)
[#002] sha256:b6486fdaa1c6892370bf2f055a3d2aab714affd6d377828de930664fb1ba8358 - 0.0% (149 Bytes)
[#003] sha256:90a628d3143835ba4f310b06f4e14d30e7e6a4647f9f93cab4a1484b98cad36d - 96.7% (73.4 MB)
[#004] sha256:cc47cb955dc8be4ee90422c9ac7ff462ad01cc86eaf563c8396a645d335c8a9f - 0.01% (7.81 KB)
[#005] sha256:7b009ac720aab008740f093e65d7e3ceb3287879e3d32014888a6947dff6c2c4 - 0.0% (161 Bytes)
[#006] sha256:c650a97c7d56f246e9f315743cb63f3700931a6a42edbfeb726a9d569712e962 - 0.0% (197 Bytes)
[#007] sha256:b832e2fbd3bad50e228804f1c1147e66ffc4e0edfe4002aaf85b75d36e01e556 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:e8733e8cc0a81e15ca4041760b6e27392c34171512d34405a9b262b1fff5c687 in /
2022-08-09 17:49:22 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-10 16:32:48 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-08-10 16:32:48 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-08-10 16:32:49 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-08-10 17:17:44 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-08-10 17:17:44 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-08-10 17:17:44 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-08-10 17:27:28 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-08-10 17:27:29 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-08-10 17:27:30 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-08-10 17:27:30 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-08-10 17:27:31 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-08-10 17:27:31 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-08-10 17:27:31 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-08-10 17:27:31 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-08-10 17:27:31 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-08-10 17:27:32 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-08-10 17:27:32 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:ecd0d57faafee9fea510481a121892c171c9de1394a33f7f2496327fd9868bd4
2022-08-10 20:26:57 UTC
71.3 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:c6556b3b6858c6fa1e328377cc2c4becdc9cd1bc3e7302aa7299936522cf93ba - 3.23% (2.31 MB)
[#001] sha256:b8a738b39479fd8f48817ac98870f37b48f1856fe7db240c151ca31d02c8dc99 - 0.0% (1.26 KB)
[#002] sha256:03b8cd076cdce07e25ab5ecddc7b199911583628b53f4fd34d24488968b80d8b - 0.0% (149 Bytes)
[#003] sha256:ca77f23bb059fa511a31c3999548309afe57ddce9361fd8c36f80cd72c507488 - 96.75% (69 MB)
[#004] sha256:fb6e2e86e311b26ac29be5e3c0dddb8fc7500717c283f06fca9d16ff10052050 - 0.01% (7.8 KB)
[#005] sha256:6b0b968158378fc8df2e24eaeba784364bda8b11bf61b2912bd9c6e8db2de434 - 0.0% (162 Bytes)
[#006] sha256:f91d5bcdbaf86967a32d2655f21d67fc088fc361f65f28d30ef870f7cf3d9303 - 0.0% (195 Bytes)
[#007] sha256:6c9abb66c71915658e1e434050a745fcde64c4960665c70155262bfc14820ba9 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:75521fe16320b193092588f6f31052c85e736965ceb11673de18bd14965a45e6 in /
2022-08-09 16:57:44 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-10 19:31: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
2022-08-10 19:31:18 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-08-10 19:31:19 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-08-10 20:17:02 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-08-10 20:17:03 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-08-10 20:17:03 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-08-10 20:26:54 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-08-10 20:26: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-08-10 20:26:55 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-08-10 20:26:55 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-08-10 20:26:56 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-08-10 20:26:56 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-08-10 20:26:56 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-08-10 20:26:56 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-08-10 20:26:56 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-08-10 20:26:57 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-08-10 20:26:57 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:83699f7b0d2c6ceef728c0276c97fa5e91f54132920183b1a3a3d4bfd572f6a8
2022-08-10 02:45:25 UTC
76.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:9b18e9b68314027565b90ff6189d65942c0f7986da80df008b8431276885218e - 3.37% (2.58 MB)
[#001] sha256:75aada9edfc58771473e8896a13640c97ada8da22ee2296fb12338c45d0ab8d7 - 0.0% (1.23 KB)
[#002] sha256:8207736937506f07b9ceed008216a1acbd1e12c8e770a48463266154eea5a296 - 0.0% (115 Bytes)
[#003] sha256:443a83c6f4d5516e762ece49e3d5b468d63467a4761611bda15fe12a5cbbf485 - 96.61% (74 MB)
[#004] sha256:cf772096204dede8cd8e66d0ab07c82aae906ffb4278fdf7e8be640e494063f7 - 0.01% (7.8 KB)
[#005] sha256:6e5e68c542e41c33ebed95b22168a5f51f026985cd05372babbfd183f1cae488 - 0.0% (129 Bytes)
[#006] sha256:13b7536a9d7d1c4d2b6e1d5ba8c455575e3a305763a22530d8a4b8445a9f4562 - 0.0% (168 Bytes)
[#007] sha256:9b9fb9a47fe3161f3c9f34847d9108e674d830935a3a131b4a8d633d6642469c - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:960fd469d48cf79ba14bbda71f3192074ed860c112e30e0bc92bff3440cb45ab in /
2022-08-09 17:39:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-10 02:26: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-08-10 02:26:40 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-08-10 02:26:41 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-08-10 02:42:04 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-08-10 02:42:05 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-08-10 02:42:06 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-08-10 02:45:15 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-08-10 02:45:16 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-08-10 02:45:17 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-08-10 02:45:18 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-08-10 02:45:19 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-08-10 02:45:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-08-10 02:45:22 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-08-10 02:45:22 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-08-10 02:45:23 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-08-10 02:45:24 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-08-10 02:45:25 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:6fe9e4e21d489d7bedb63a4abdc64a5e38f0a27918485be8473f6cbc169e39b1
2022-08-09 22:34:03 UTC
83.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:c79e5d1a8c89b87020a754c8a5c8370faaa37bfb5bca1d8af66770d522ef1caf - 3.21% (2.67 MB)
[#001] sha256:f021ee92c991d5bd636ab8278167fec20d78b682634b914af96bf31bc8721a32 - 0.0% (1.26 KB)
[#002] sha256:9a639b8f075b1697c4c81d0fba1841e970d74b74226aacbaaecbad08aa47df48 - 0.0% (149 Bytes)
[#003] sha256:c08e9d41d42fa6df1df32e6e9791758be12ff5dd6d354843615181ba2463d9dc - 96.78% (80.7 MB)
[#004] sha256:0ffad807731f134a24fb2efea6eac67b6ad898f309fd134a1e58e65128c54572 - 0.01% (7.8 KB)
[#005] sha256:9926d721810f09713b605eba0cdcd88d85d4d568e5bc57dac798abc7d8eeadaf - 0.0% (161 Bytes)
[#006] sha256:58876409b99aecc5c2b64cd1656c035cab18e1443853a8584e43f07c54ac0ca7 - 0.0% (193 Bytes)
[#007] sha256:eb543b79492507d2bc5bbfaddbb4f27822f496af50105847ab03368264c3df95 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:66b351666e41834033d334aeb3dc6998dea77aa22e8e254028c923fee67a41a8 in /
2022-08-09 17:17:10 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-09 22:10:32 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-08-09 22:10:32 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-08-09 22:10:33 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-08-09 22:29:48 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-08-09 22:29:49 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-08-09 22:29:49 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-08-09 22:33:55 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-08-09 22:33: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-08-09 22:34:00 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-08-09 22:34:00 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-08-09 22:34:01 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-08-09 22:34:01 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-08-09 22:34:02 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-08-09 22:34:02 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-08-09 22:34:02 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-08-09 22:34:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-08-09 22:34:03 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:4b4575e88635aa01920b6d725dd15028f38f91e55823bf6f64753a87f1048156
2022-08-10 03:04:03 UTC
78.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA2562dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
PG_VERSION11.16
[#000] sha256:790c84f1f3409eab952345157df7fa804ba6b5f06d4ceb6f2dfa3c6de2064397 - 3.14% (2.47 MB)
[#001] sha256:e37954570c3339ca3dbd0ab6914f9cc51c3e566c430fccfcf138af422bec41fb - 0.0% (1.25 KB)
[#002] sha256:5fb11cf4d23618d019e95519ca11f8b63235cbb4e6ce8e456c44b98728c74962 - 0.0% (149 Bytes)
[#003] sha256:99b1170f5578a2410a4faad6f233a2cc2af70210cb4e1aeacf1de573450b1b76 - 96.84% (76.2 MB)
[#004] sha256:cd30dbcac5db768bc469fca20489627769b12b7b6ff80ce86097db521418efb2 - 0.01% (7.8 KB)
[#005] sha256:5371ed5975df962412a5f2cc273b6f13e4545f6733fcd1222ba4a3defb66262a - 0.0% (161 Bytes)
[#006] sha256:1acdf804f1230b4d419d176f51ab4156cd9f9eebb7ec95e22d4e31497d4a3ca5 - 0.0% (195 Bytes)
[#007] sha256:c510795c9942c8609d075da424448c1c3769d2f030710099c0bc17286dd9334a - 0.01% (4.6 KB)
/bin/sh -c #(nop) ADD file:b43a065471bc4711415d3c67cd5b6559b0c48ee7ffe9761530477cf457a6dc34 in /
2022-08-09 17:41:46 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-08-10 02:38:11 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-08-10 02:38:12 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-08-10 02:38:12 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-08-10 03:01:10 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2022-08-10 03:01:11 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.16
2022-08-10 03:01:11 UTC/bin/sh -c #(nop) ENV PG_SHA256=2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
2022-08-10 03:03:57 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-08-10 03:04:01 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-08-10 03:04:01 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-08-10 03:04:01 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-08-10 03:04:02 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-08-10 03:04:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-08-10 03:04:02 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-08-10 03:04:02 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-08-10 03:04:02 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-08-10 03:04:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-08-10 03:04:03 UTC/bin/sh -c #(nop) CMD ["postgres"]