Namespace
library
Image / Tag
postgres:14.1-alpine3.14
Content Digest
sha256:b3d01066c4ae4f1da294e2e4adc5f27d40fb9bba29b51254a2c58f399f32f023
Details
Created

2021-11-16 01:54:56 UTC

Size

80 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:5420e0d28c84ecb16748cb90cc6acf8e2a81dab10cb1f674f3eee8533e53c62a - 3.38% (2.7 MB)

[#001] sha256:a69c9882c88ce94760f0d36deed4d8f55228d1df726a3bc33021031f8922aa5a - 0.0% (1.25 KB)

[#002] sha256:2788bc110cff8f1594e3fabf8ae849a646240d7e3c7ce77b566583c4a66b5467 - 0.0% (148 Bytes)

[#003] sha256:e8d3f8f02058ad9a5e5890d3ffb16899b4ce5d3e05a9d792ecf4b94a8880c0d6 - 96.61% (77.3 MB)

[#004] sha256:e7ed1fff3a1205468737f26a5111d5aca0ce581fe7c7d6279def3a95153b38bc - 0.01% (8.98 KB)

[#005] sha256:8d621b28e49ed1a065cce880c42fa8c9b3641b4d5cc71e4d8829075b47db4ef2 - 0.0% (161 Bytes)

[#006] sha256:5ba42effc850ae2bc921138c661b7ff565174990f7163d03b38f94eb0304b2d2 - 0.0% (193 Bytes)

[#007] sha256:8d6dc3b8be16be3e0a6bd7de942fd0f335d6f3e5931c09002bd7ac736bbf381a - 0.01% (4.61 KB)


History
2021-11-12 16:38:42 UTC

/bin/sh -c #(nop) ADD file:403428c2903dd9dea10d069185873cb2c2c3149c553797807c69f22aa3d12fe3 in /

2021-11-12 16:38:42 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2021-11-12 23:55:01 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-11-12 23:55:01 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2021-11-12 23:55:02 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2021-11-12 23:55:02 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-12 23:55:03 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-12 23:55:03 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-16 01:54:51 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 llvm11-dev clang g++ make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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 --with-lz4 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 01:54:53 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2021-11-16 01:54:54 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2021-11-16 01:54:54 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-16 01:54:55 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-16 01:54:55 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2021-11-16 01:54:55 UTC

/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/

2021-11-16 01:54:55 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2021-11-16 01:54:56 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2021-11-16 01:54:56 UTC

/bin/sh -c #(nop) EXPOSE 5432

2021-11-16 01:54:56 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2021-11-16 01:27:01 UTC

Size

75.3 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:97518928ae5f3d52d4164b314a7e73654eb686ecd8aafa0b79acd980773a740d - 3.58% (2.69 MB)

[#001] sha256:9f97b97dbe44d3d5922703b0d43a419416f14f7acfda692d113a7aa9b9721fe1 - 0.0% (1.25 KB)

[#002] sha256:1b95022c44c584684bb06e7baad164584f8952fb082bab4a0daf8dc9c4b803dd - 0.0% (149 Bytes)

[#003] sha256:2174501dfc980edaf733046f19df37ef6433b9712c9c0c978e246d0313c74745 - 96.4% (72.6 MB)

[#004] sha256:02158f600dbee959aac9ce456b4be1461dfb9d495efe163797379436c36576da - 0.01% (8.98 KB)

[#005] sha256:10baee6da8565de77317ad9481f5b35078e4dbcbeb6b182c6de7738d7867f3a0 - 0.0% (161 Bytes)

[#006] sha256:e8c3775c206c35d4ff8c013fc4309b7da518f2171ad40483b370431a4fd09d1a - 0.0% (194 Bytes)

[#007] sha256:e0d373c771015cf2d7fd73319a72b47d2a4fb6072b11d4fa3063bca7f64aacfe - 0.01% (4.61 KB)


History
2021-11-12 17:19:44 UTC

/bin/sh -c #(nop) ADD file:762c899ec0505d1a32930ee804c5b008825f41611161be104076cba33b7e5b2b in /

2021-11-12 17:19:45 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2021-11-13 05:06:01 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-11-13 05:06:01 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2021-11-13 05:06:02 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2021-11-13 05:06:02 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-13 05:06:02 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-13 05:06:02 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-16 01:26: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 llvm11-dev clang g++ make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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 --with-lz4 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 01:26: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

2021-11-16 01:26:59 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2021-11-16 01:26:59 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-16 01:27:00 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-16 01:27:00 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2021-11-16 01:27:01 UTC

/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/

2021-11-16 01:27:01 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2021-11-16 01:27:01 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2021-11-16 01:27:01 UTC

/bin/sh -c #(nop) EXPOSE 5432

2021-11-16 01:27:01 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2021-11-16 01:54:51 UTC

Size

73.8 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:56afcfda5d78cc243287acbaad250c5e8c0f47aae620dd7c51985b0d3c9b2728 - 3.41% (2.51 MB)

[#001] sha256:0306bf867c1af5e86348eac10e572e5bbf7b1df7161b3237e6dbf067420ba562 - 0.0% (1.25 KB)

[#002] sha256:b273647972e23088da4f0aa3896b1e39e9c26c17f7239fe3fa6ca165b5190765 - 0.0% (149 Bytes)

[#003] sha256:37108314b345e8b50bc06cac9ce5342b2de3eaf3b2be8bad6477532b20526709 - 96.57% (71.3 MB)

[#004] sha256:db42d4511a4e979cd481652b8988ceb6bdd17d4597011b67085f7b0bebb0080e - 0.01% (8.99 KB)

[#005] sha256:ff5b66511ffbde7542ced326ee9349c4bf79ba57d4b08b51f2029e3f3ea0c6e2 - 0.0% (161 Bytes)

[#006] sha256:ae733f015553a203d90febde32ff74af58e08558986fae75f57deaab9cd293e0 - 0.0% (194 Bytes)

[#007] sha256:97781248802c9e416b459b349d5d5745fa1e941866006d8f07ac0d07f976cd27 - 0.01% (4.61 KB)


History
2021-11-12 16:49:42 UTC

/bin/sh -c #(nop) ADD file:6daf1fe862c00673bf9cf4d7e20b0bf253a56e7fb8ed5e730a4466ab9186e18a in /

2021-11-12 16:49:44 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2021-11-13 00:23:41 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-11-13 00:23:42 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2021-11-13 00:23:43 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2021-11-13 00:23:44 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-13 00:23:44 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-13 00:23:45 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-16 01:54:42 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 llvm11-dev clang g++ make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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 --with-lz4 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 01:54:45 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2021-11-16 01:54:46 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2021-11-16 01:54:47 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-16 01:54:48 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-16 01:54:49 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2021-11-16 01:54:49 UTC

/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/

2021-11-16 01:54:49 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2021-11-16 01:54:50 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2021-11-16 01:54:50 UTC

/bin/sh -c #(nop) EXPOSE 5432

2021-11-16 01:54:51 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2021-11-16 02:11:06 UTC

Size

69.6 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:764d2e53e1a607f2d8261522185d5b9021ade3ec1a595664ee90308c00176899 - 3.34% (2.33 MB)

[#001] sha256:65aac23bae9dde4628b949f53b16460bf45bbe0cb93feb0ca4e699560ec405be - 0.0% (1.25 KB)

[#002] sha256:1c82e83b49adac505e95de3db74b7b3d754078880f57793b8cd1a81d5c456289 - 0.0% (149 Bytes)

[#003] sha256:1f1b2e032c88a7e63518183d889c8345e0fc1a3e3eec296c5e12fc628330a0bf - 96.64% (67.2 MB)

[#004] sha256:4c6ef5cb05709571c7395a44e0eaded19d72d5f0bc87b51347aa9aa6b51e7a5d - 0.01% (8.99 KB)

[#005] sha256:3b56640fd9ac98d95e89cdf9bf784c48816456640d4afd4c9668e33df7cacb68 - 0.0% (160 Bytes)

[#006] sha256:9c64e3e5a2f5b779bf59ad0600dd3f730d67884b1e77c45c033bc0e6b2a50739 - 0.0% (194 Bytes)

[#007] sha256:15cd7d7da08cde5981692a14532c455e4c91b45731f29e52a1be5f7ed71b8385 - 0.01% (4.61 KB)


History
2021-11-12 16:57:35 UTC

/bin/sh -c #(nop) ADD file:03e0720458c3475758bf4394afa56f2165198eb91e6e9581f7768e433744dd9b in /

2021-11-12 16:57:36 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2021-11-12 20:25:42 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-11-12 20:25:42 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2021-11-12 20:25:44 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2021-11-12 20:25:44 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-12 20:25:44 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-12 20:25:45 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-16 02:10: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 llvm11-dev clang g++ make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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 --with-lz4 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 02:10: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

2021-11-16 02:11:01 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2021-11-16 02:11:01 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-16 02:11:03 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-16 02:11:03 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2021-11-16 02:11:04 UTC

/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/

2021-11-16 02:11:04 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2021-11-16 02:11:05 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2021-11-16 02:11:05 UTC

/bin/sh -c #(nop) EXPOSE 5432

2021-11-16 02:11:06 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2021-11-16 01:51:46 UTC

Size

74.2 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:be307f383ecc62b27a29b599c3fc9d3129693a798e7fcce614f09174cfe2d354 - 3.49% (2.59 MB)

[#001] sha256:736fbb41a17a3d331434d1ced1bbefaf60ce58df545c90a6d1dbfeec5eb9af41 - 0.0% (1.23 KB)

[#002] sha256:99566057aebae6d994d20c6ed9fa0b7e7cd103f58ddce64c9096b244ec9905a0 - 0.0% (115 Bytes)

[#003] sha256:964f3473b533e63d0ea85b33c5ad4ef6cff9172a5ac63f1678c318307c3b6631 - 96.49% (71.6 MB)

[#004] sha256:56cfdcef803d22036c70dd94bd678200c944df37169895241088f0c0317290bd - 0.01% (8.98 KB)

[#005] sha256:659b1ff109223e7c586bc9f13517bddbac5491eb92e91a82fdaddd8e554149f9 - 0.0% (129 Bytes)

[#006] sha256:16bdbb532d9effb2027895aa6c9168b0dffc1413752652c778fbe6ea0c5a8ad9 - 0.0% (170 Bytes)

[#007] sha256:85ac54f38d6e2f3d52d9f9bbdce8d41ecfe038c9ab8055b9b484cb8d623de154 - 0.01% (4.61 KB)


History
2021-11-12 16:39:58 UTC

/bin/sh -c #(nop) ADD file:400c0466b29ccad54e0f6c0acef22542992828678c96693ef1f9f4d0551935d8 in /

2021-11-12 16:39:58 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2021-11-12 23:41:51 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-11-12 23:41:52 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2021-11-12 23:41:53 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2021-11-12 23:41:54 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-12 23:41:55 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-12 23:41:56 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-16 01:51: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 llvm11-dev clang g++ make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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 --with-lz4 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 01:51:37 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2021-11-16 01:51:38 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2021-11-16 01:51:39 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-16 01:51:40 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-16 01:51:41 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2021-11-16 01:51:43 UTC

/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/

2021-11-16 01:51:43 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2021-11-16 01:51:44 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2021-11-16 01:51:45 UTC

/bin/sh -c #(nop) EXPOSE 5432

2021-11-16 01:51:46 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2021-11-16 05:08:10 UTC

Size

80.2 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:72940440c1ab65eca4d38846164719ffde4b147543cc658d041407a925b13368 - 3.35% (2.69 MB)

[#001] sha256:e892d223635db5048d4e0f826cfa9094090c3aa12a15afc7fdd249d076ca3e80 - 0.0% (1.26 KB)

[#002] sha256:1443b2a29145c872139ba01a0f2ab1a45f154e89a612cdd03ded00d39d7e4875 - 0.0% (149 Bytes)

[#003] sha256:6b825af2aaa5716ec75b3666975876d64c459b4e446e86713c2a3ddc5bc8d7c1 - 96.63% (77.5 MB)

[#004] sha256:d6ab9eacf2be63d1bbc49a2d46915e00967d4989b8126c29f5382d2ba2c4f230 - 0.01% (8.99 KB)

[#005] sha256:29c5da497332eb700113d4140885944bc9aa35b3f12257f710fa478bf856079f - 0.0% (163 Bytes)

[#006] sha256:9b5993d79deb4930468e3cd03fdfb2b37dc3fbedffaac4c37c20ebc93a4617ef - 0.0% (194 Bytes)

[#007] sha256:0807e8dc0cd31f3571cae9b3a978bcd182456e4f9a854f9cb7228904a8fce106 - 0.01% (4.61 KB)


History
2021-11-12 21:18:00 UTC

/bin/sh -c #(nop) ADD file:4d45063079cb28a34f1e382fddb22f156ac99d5449aa05ed37cb653c1f7b80f2 in /

2021-11-12 21:18:01 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2021-11-13 14:19:29 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-11-13 14:19:31 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2021-11-13 14:19:42 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2021-11-13 14:19:45 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-13 14:19:48 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-13 14:19:53 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-16 05:06: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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm11-dev clang g++ make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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 --with-lz4 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 05:06: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

2021-11-16 05:07:00 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2021-11-16 05:07:08 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-16 05:07:29 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-16 05:07:38 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2021-11-16 05:07:41 UTC

/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/

2021-11-16 05:07:48 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2021-11-16 05:07:59 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2021-11-16 05:08:05 UTC

/bin/sh -c #(nop) EXPOSE 5432

2021-11-16 05:08:10 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2021-11-16 01:46:20 UTC

Size

76.6 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:817a13b0e05928f7491adbf1d2cf261ec35079112247bd03469bbe31156aca7c - 3.25% (2.49 MB)

[#001] sha256:c11d0e178e11b961bdeb7fbf4c5d37bdf95bead1a94bf7cb11c22318da7b0408 - 0.0% (1.25 KB)

[#002] sha256:013949685d6dbf2034fe35128fa32dead6dda85c74b516d4e075450693ad8cd7 - 0.0% (149 Bytes)

[#003] sha256:87a86935855219aae0c5dd5ba5eaafecb265b601e9d6a1122f334540afd7135c - 96.73% (74.1 MB)

[#004] sha256:ef1294bd6c07a82301a4cd61fcc91bd579599ee59531f1686532ad78a20ad9aa - 0.01% (8.99 KB)

[#005] sha256:79b989add4ccbef9d83d0cdb6b39a63db448db32fd1e402252913fb27c6dc554 - 0.0% (163 Bytes)

[#006] sha256:75204cc731aa3fe4e3e4339385d9eb6de8717ff455de6a3023189569166d45ba - 0.0% (194 Bytes)

[#007] sha256:bb8410ddd851b117e937768c2d3000d82f43de66a50bc61e377fa158d0ab796f - 0.01% (4.61 KB)


History
2021-11-12 16:41:35 UTC

/bin/sh -c #(nop) ADD file:7e0cf02b3f015b1a0f867c03b2902b85f2140be1cee7af63c23f367a487e4577 in /

2021-11-12 16:41:36 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2021-11-12 19:02: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

2021-11-12 19:02:11 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2021-11-12 19:02:12 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2021-11-12 19:02:12 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-12 19:02:12 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-12 19:02:12 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-16 01:46: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 llvm11-dev clang g++ make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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 --with-lz4 ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 01:46:18 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2021-11-16 01:46:18 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2021-11-16 01:46:18 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-16 01:46:19 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-16 01:46:19 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2021-11-16 01:46:19 UTC

/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/

2021-11-16 01:46:19 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2021-11-16 01:46:19 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2021-11-16 01:46:19 UTC

/bin/sh -c #(nop) EXPOSE 5432

2021-11-16 01:46:20 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Danger Zone
Delete Tag

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.

Delete