2021-08-06 22:17:15 UTC
28.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2565af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
PG_VERSION10.17
[#000] sha256:935703e1179e32e201e4a36d5664d58299dc8e7bcac197b70c295c0a59216db1 - 9.55% (2.69 MB)
[#001] sha256:d7c05efe598158ae45c83841ac5ec7934faa5d733f5fcfe85b0261cf9c987262 - 0.0% (1.26 KB)
[#002] sha256:1bf37feeefc8b50739451550bcd2f9738e9369d3eea1e7c8fe5fbd0ee22ba530 - 0.0% (149 Bytes)
[#003] sha256:04f3471f60cb11dd4c9b6368ae793b1ddc1e468f33d8310d2206d978301eb9ff - 90.41% (25.5 MB)
[#004] sha256:d9dd3b29d108509cd2bfee98101d29ce700254be75a691179851172f92bdd257 - 0.03% (7.55 KB)
[#005] sha256:8a22e7213d35c2d3cbc2a7d1a2654335eb97b87cdc34a131db331f8ea8620eca - 0.0% (161 Bytes)
[#006] sha256:372b2ebcb9bc77a696131cb4950cb0f16ec65e855e28cfbe4b914e223f0aac73 - 0.0% (194 Bytes)
[#007] sha256:bd28e4515fa18992bb0909519803ec67e57d3ab6f00b76e2a80dfd47897f25a6 - 0.01% (4.3 KB)
[#008] sha256:89e9edb490f8fe786c7fd4a035594ae77145061ff7a7a77a51b4e99eb9409d43 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:bafaec4a54d6cef99b5f3660d074a3d2251e4d4bd09df9ea65f33e9bffb7d88d in /
2021-08-06 17:38:26 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-06 21:44:56 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-08-06 21:44:57 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-06 21:44:57 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-06 22:12:59 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-08-06 22:13:00 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.17
2021-08-06 22:13:00 UTC/bin/sh -c #(nop) ENV PG_SHA256=5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
2021-08-06 22:17:06 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu ; 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 }' )"; 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-08-06 22:17:07 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-08-06 22:17:09 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-06 22:17:09 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-06 22:17:11 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-06 22:17:11 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-06 22:17:12 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-08-06 22:17:14 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-06 22:17:14 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-06 22:17:14 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-06 22:17:15 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-06 22:17:15 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-08-06 20:44:07 UTC
27.3 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2565af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
PG_VERSION10.17
[#000] sha256:29291e31a76a7e560b9b7ad3cada56e8c18d50a96cca8a2573e4f4689d7aca77 - 9.82% (2.68 MB)
[#001] sha256:c7f8a1ea71cb44639c871a69f095baa1737555205a3ea7ce92b116c1462ffc37 - 0.0% (1.25 KB)
[#002] sha256:64d8912b293dcd54c830c025ee7d3c1e3774037bc917800fc4db4a04959855ca - 0.0% (149 Bytes)
[#003] sha256:ca32792aa1cb63c253b5e12146748c6c8c0e5327131f24602f7ef330a7795a99 - 90.13% (24.6 MB)
[#004] sha256:d02a6c0c16ad57001f1ae18a6ecf4bf7fec53418762fa0271c2ad570a5f8c61c - 0.03% (7.55 KB)
[#005] sha256:14697e215b1b4768585b953be75bbb8b55dcb0f450a7345964df5de347ac283f - 0.0% (161 Bytes)
[#006] sha256:5938b4e5c466370427a06342600690ee0addfda35018aa1a44d5fd4658d3aa08 - 0.0% (195 Bytes)
[#007] sha256:926f8cf12cf405846b56df8b92f3fd94e795e8eae5529287b2a81344b7f9a01f - 0.02% (4.3 KB)
[#008] sha256:4dbc924c7ffcc634534b8f4e840b3f8bc8fac5b8e88366ad71b85b361d5eb190 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:34eb5c40aa00028921a224d1764ae1b1f3ef710d191e4dfc7df55e0594aa7217 in /
2021-08-06 17:19:45 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-06 20:09: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
2021-08-06 20:09:36 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-06 20:09:37 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-06 20:38:34 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-08-06 20:38:34 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.17
2021-08-06 20:38:35 UTC/bin/sh -c #(nop) ENV PG_SHA256=5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
2021-08-06 20:44:00 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu ; 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 }' )"; 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-08-06 20:44: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
2021-08-06 20:44:03 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-06 20:44:03 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-06 20:44:05 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-06 20:44:05 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-06 20:44:05 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-08-06 20:44:06 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-06 20:44:07 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-06 20:44:07 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-06 20:44:07 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-06 20:44:07 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-08-06 21:59:04 UTC
26.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2565af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
PG_VERSION10.17
[#000] sha256:f465bb3e9fcd0c42f936ecc566c6e40353c00f3089b2b2c2ea1663c30f89d3ab - 9.45% (2.5 MB)
[#001] sha256:a9894594f46e7a2d9314f2f96a83a8a4d069c1c3d3bd1f20f7378ea4a36eb000 - 0.0% (1.25 KB)
[#002] sha256:e1d885209ac2857981e19ce7ccfb1852b335ed57fd0d8020badbc76323c3a5c3 - 0.0% (149 Bytes)
[#003] sha256:8ba11c3d005e91c99eb12877162542d7b5d748c61cf8d8397dc694af617f30ed - 90.5% (24 MB)
[#004] sha256:dee9a6f6fe3a09cb7a8cf0361d963c285674905cc88daeee188e8a2c1b48fe52 - 0.03% (7.55 KB)
[#005] sha256:a5c63b8e60e33f284d337841a4b6786130d97619b45f99b66f3545878b2c470e - 0.0% (161 Bytes)
[#006] sha256:8427fe8b81522c5b026455448e1a761e8b0a64c46551fb1080f1ae98ea5a3d00 - 0.0% (195 Bytes)
[#007] sha256:9c5519c79e8d396163a2d758349ea2a9fd1f26a6ed50630a608eac3b8cbecde2 - 0.02% (4.3 KB)
[#008] sha256:add7270837da9aaf5f8f68cc7f5f3a4eb4bebebfbacde32aebe9f2455c6ac000 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:7f2c7deda009eabdcbbdccb11e854043d32c498e64e7e1ca02165d7bb4261d39 in /
2021-08-06 17:49:32 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-06 21:34:10 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-08-06 21:34:11 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-06 21:34:12 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-06 21:55:17 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-08-06 21:55:18 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.17
2021-08-06 21:55:18 UTC/bin/sh -c #(nop) ENV PG_SHA256=5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
2021-08-06 21:58: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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu ; 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 }' )"; 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-08-06 21:58:56 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-08-06 21:58:58 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-06 21:58:58 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-06 21:59:00 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-06 21:59:00 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-06 21:59:01 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-08-06 21:59:02 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-06 21:59:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-06 21:59:03 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-06 21:59:04 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-06 21:59:04 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-08-07 01:32:32 UTC
25.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2565af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
PG_VERSION10.17
[#000] sha256:4ee0caa23b369b04827640a4be298bf4ff7bacd030c77e915f5d7fb8f987594a - 9.09% (2.32 MB)
[#001] sha256:0cef58414db85950184ccfaaf047c5260d938c1ed132eb394e7dcc08e421dc3e - 0.0% (1.25 KB)
[#002] sha256:d99a5114dc9bd4eaae87d214120cfd9ac233204ed1fdf161fad160f52db1439a - 0.0% (149 Bytes)
[#003] sha256:5061b4af57a878fd849264f4ba08fcd620d29006df79bc808d6aa95116a9fca6 - 90.86% (23.2 MB)
[#004] sha256:60957996449df0850e10530434ee9da10a563de9c535f4eb34cb9dcaddfefdb8 - 0.03% (7.55 KB)
[#005] sha256:a05e70498d4cfd0f2345cc693d753d822733ad3883f2f08b64dfcc7ad090f19b - 0.0% (163 Bytes)
[#006] sha256:b7a67ba83ec136471013de19af20d47b32b359f67a187d6c3b02f96ddf08d383 - 0.0% (194 Bytes)
[#007] sha256:3632635fd0d785636fcc1ed4b061c079b0eae16e31ca191752ed322f75112da5 - 0.02% (4.3 KB)
[#008] sha256:69e803634720dd4081d1e84da19a7920eef9bfad77a3d7ea107f0bd2d508110a - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:3a35ff3ac0d80289d419a4d6d8319610c38e1936d296addafb9aaf506946230f in /
2021-08-06 17:57:32 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-07 01:08:14 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-08-07 01:08:14 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-07 01:08:16 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-07 01:28:55 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-08-07 01:28:55 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.17
2021-08-07 01:28:55 UTC/bin/sh -c #(nop) ENV PG_SHA256=5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
2021-08-07 01:32:21 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu ; 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 }' )"; 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-08-07 01:32:23 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-08-07 01:32:25 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-07 01:32:25 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-07 01:32:27 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-07 01:32:28 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-07 01:32:28 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-08-07 01:32:30 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-07 01:32:30 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-07 01:32:31 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-07 01:32:31 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-07 01:32:32 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-08-07 00:41:13 UTC
27 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2565af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
PG_VERSION10.17
[#000] sha256:fd3acdcea5682abced546ec19fb6ebee725c5184e5d91614c469c0a79e67f2d0 - 9.56% (2.59 MB)
[#001] sha256:ba97523f916fd8acc76ccd9aaafa6ef7f9adf2d2ae821e4b8c2a4a3ce78db610 - 0.0% (1.26 KB)
[#002] sha256:ef888e85bfc8313834349d662d946b19b67e6a6fb705c484d91b83be6a9b76d8 - 0.0% (149 Bytes)
[#003] sha256:e461488c4f69e6c40eb5aed0971533d2a659938011f86bba3ca090e7ec2ead95 - 90.39% (24.4 MB)
[#004] sha256:7d57ab8a89df604fda1c27e1bfb07ca2006166d0deae7c7eefd7aaeba043198d - 0.03% (7.54 KB)
[#005] sha256:760c6e369af34da04fb11a9e5f8fed908721fa1e40fad425c0f9c93f2cb876d3 - 0.0% (161 Bytes)
[#006] sha256:36854406610c82a8af0e7867667d7d38d4015612b903c562bcf6efea95bf5b6d - 0.0% (193 Bytes)
[#007] sha256:ded7c336ab15cd34cf428b2c53b50e7053803b2fb4aeb85c0040ea2ba4d89787 - 0.02% (4.3 KB)
[#008] sha256:7a3ba14e5f6035264140afbe712a9d3fc9efa0fc12a79da6b2916f39be1b6459 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:1a8fd1066485e1261462e689c1a072f010c1d3be904b73ef2b84128fac652951 in /
2021-08-06 17:39:27 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-07 00:19: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
2021-08-07 00:19:26 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-07 00:19:27 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-07 00:38:06 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-08-07 00:38:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.17
2021-08-07 00:38:07 UTC/bin/sh -c #(nop) ENV PG_SHA256=5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
2021-08-07 00:41:09 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu ; 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 }' )"; 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-08-07 00:41:10 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-08-07 00:41:10 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-07 00:41:11 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-07 00:41:11 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-07 00:41:11 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-07 00:41:12 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-08-07 00:41:12 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-07 00:41:13 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-07 00:41:13 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-07 00:41:13 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-07 00:41:13 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-08-07 01:07:13 UTC
28.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2565af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
PG_VERSION10.17
[#000] sha256:0ff902055236f70c4694c806877243e1dd52c513825a2a3ecc7eba8f5202acc8 - 9.39% (2.68 MB)
[#001] sha256:0171836c388de004e05625d2d3ef11aca08f84a644c0e3556f407e3faa45b35b - 0.0% (1.25 KB)
[#002] sha256:4f2c96cc7a2637602e04a8006bc17a2ef71621e55b1d19adb54611e9ae383651 - 0.0% (149 Bytes)
[#003] sha256:2693fa1e0673ee2fdd9f2dd037e415ecb0b065d087c947661ab93a8d303f0e3c - 90.57% (25.9 MB)
[#004] sha256:00d098cbe907302bc8911c91d04313400a2f66f5cc3c8ac417b1df4d94a2a5d3 - 0.03% (7.55 KB)
[#005] sha256:dff839f36d5ea7cdcaedb72a15521b9fa5dcc1cc6a03e7777c5b4249d3be3d33 - 0.0% (163 Bytes)
[#006] sha256:d9f01e038cc9e08b3815f4109457f8f6cea6b3fd0ad667f8726451d19f8640f7 - 0.0% (194 Bytes)
[#007] sha256:8dd9d4b523977191bc99cf48a7dcad783bf41db3d3ff5717cfb8a2f9b3c96074 - 0.01% (4.3 KB)
[#008] sha256:8067a949089bdea10505d9f7a3c99b7a2d7bc0c3553f5101193d013ccea2cc2d - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:40f3b617d7ff269d92f0ffcf8aad561b5f2c0626ef519a7f584f1ba0182b3188 in /
2021-08-06 18:28:35 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-07 00:39:16 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-08-07 00:39:27 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-07 00:39:50 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-07 01:03:08 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-08-07 01:03:11 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.17
2021-08-07 01:03:13 UTC/bin/sh -c #(nop) ENV PG_SHA256=5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
2021-08-07 01:06:07 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu ; 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 }' )"; 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-08-07 01:06: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
2021-08-07 01:06:29 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-07 01:06:32 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-07 01:06:41 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-07 01:06:44 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-07 01:06:47 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-08-07 01:06:54 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-07 01:06:58 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-07 01:07:03 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-07 01:07:08 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-07 01:07:13 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-05-14 20:26:18 UTC
27.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2565af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
PG_VERSION10.17
[#000] sha256:afadee6ad6a38d3172beeeca818219604c782efbe93201ef4d39512f289b05ae - 9.14% (2.48 MB)
[#001] sha256:f539beccb9c12dbbd5eb5238188d7421b0e766e3e536f47e5a25dce4187b138f - 0.0% (1.25 KB)
[#002] sha256:78639c932051e59362713e29f35ff376c4cd5627ea231422efbf7cf7b253ec7a - 0.0% (149 Bytes)
[#003] sha256:5484f489c65ff9cdb4864eca669512abadfa21b5adfaa1bcc6da6b03eb8a7420 - 90.81% (24.6 MB)
[#004] sha256:47df0fababdba0ce419c43fc35a504faebca608daf029eb3000224aee1f007e5 - 0.03% (7.19 KB)
[#005] sha256:5977eb265b758b08535efceaa582689bcdd59fccc293b2efe517f84a57520fc1 - 0.0% (163 Bytes)
[#006] sha256:8e156decf3dfbf951cb762cefbfa27b0608302100b2d971f0843138eae9db756 - 0.0% (193 Bytes)
[#007] sha256:2accd737fcdde4e30c1212659661b5885c02b3bea28be88f70aed0c253c516d6 - 0.02% (4.3 KB)
[#008] sha256:13356809411d60220f33942045329121f4a8b858a5dd683dc5933e412009520a - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:c715fef757fe2b022ae1bbff71dbc58bddf5a858deb0aac5a6fbcf10d5f3111c in /
2021-04-14 18:41:36 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-04-15 02:35: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
2021-04-15 02:35:26 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-04-15 02:35:27 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-04-15 02:47:22 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-05-14 20:23:58 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.17
2021-05-14 20:23:59 UTC/bin/sh -c #(nop) ENV PG_SHA256=5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c
2021-05-14 20:26:13 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu ; 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 }' )"; 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-05-14 20:26:15 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-05-14 20:26:15 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-05-14 20:26:15 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-05-14 20:26:16 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-05-14 20:26:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-05-14 20:26:17 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-05-14 20:26:17 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-05-14 20:26:18 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-05-14 20:26:18 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-05-14 20:26:18 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-05-14 20:26:18 UTC/bin/sh -c #(nop) CMD ["postgres"]
Please be careful as this will not just delete the reference but also the actual content!
For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.