Namespace
library
Image / Tag
postgres:15.2-alpine
Content Digest
sha256:d9c304353c031b21e9a7e33dc4781e272a9fa802a2ab9703fe4199d72ba1422c
Details
Created

2023-03-29 21:59:09 UTC

Size

94.4 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

15

PG_SHA256

99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

PG_VERSION

15.2


Layers

[#000] sha256:b2b0f0faedf1b87a3c77cf90d027fb7a25aa67f35400244a4655ad5842a757e4 - 3.45% (3.25 MB)

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

[#002] sha256:c9240ad70b88ce913defeb189e06f474ad7afe836b50e6c9459c9e438fb48fe0 - 0.0% (147 Bytes)

[#003] sha256:e19a1a29d9c9b0e109b9b0d72c642c8fb38398c351b500f131d2866b6d8505b6 - 96.54% (91.1 MB)

[#004] sha256:970433b33512737c6a940df0f8935ff82360d31dc40fe06ef3b6ece5bd3209b5 - 0.01% (9.23 KB)

[#005] sha256:510033ddfaf28be48a82586134ed08b7546bb9938b537ac8286fb91721aab876 - 0.0% (160 Bytes)

[#006] sha256:fc727ee3e6f1a234ebb0c161a2aa12f9591ead1ec9b0d713fde57ecc8b3c3189 - 0.0% (195 Bytes)

[#007] sha256:e1fbcdd4addbf7d810ba5aeaa54d1efb175399b041839f4747eed365ac8914ac - 0.0% (4.68 KB)


History
2023-03-29 17:38:30 UTC

/bin/sh -c #(nop) ADD file:61bc44c9685b610d18bddd05d2ea1e57b4313f5f433a0a0b7e5269ec24f108b0 in /

2023-03-29 17:38:30 UTC

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

2023-03-29 21:54:17 UTC

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

2023-03-29 21:54:17 UTC

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

2023-03-29 21:54:18 UTC

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

2023-03-29 21:54:18 UTC

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

2023-03-29 21:54:18 UTC

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

2023-03-29 21:54:18 UTC

/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

2023-03-29 21:59: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 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 lz4-dev zstd-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 --with-zstd ; 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 --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-03-29 21:59: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

2023-03-29 21:59:08 UTC

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

2023-03-29 21:59:08 UTC

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

2023-03-29 21:59:09 UTC

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

2023-03-29 21:59:09 UTC

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

2023-03-29 21:59:09 UTC

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

2023-03-29 21:59:09 UTC

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

2023-03-29 21:59:09 UTC

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

2023-03-29 21:59:09 UTC

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

2023-03-29 21:59:09 UTC

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

Details
Created

2023-03-30 01:50:00 UTC

Size

89.7 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

15

PG_SHA256

99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

PG_VERSION

15.2


Layers

[#000] sha256:f56be85fc22e46face30e2c3de3f7fe7c15f8fd7c4e5add29d7f64b87abdaa09 - 3.59% (3.22 MB)

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

[#002] sha256:f71699d7795ac5159478a278ffb6af3fcac0141e6a637d71062a601d7cab30c7 - 0.0% (147 Bytes)

[#003] sha256:8eff49387ec9a1f26ada557b4e31f86a45f70ef57c1a45345e5bfbe75e53bcfc - 96.4% (86.5 MB)

[#004] sha256:7da7fae4e80a5e292219502d2ce432382a68e8d0fb3841807ad70963ec194e7d - 0.01% (9.23 KB)

[#005] sha256:f33740282c0040003ee1e3c9ec1a68d5eb873795badbbf6103c79cc588760e4a - 0.0% (162 Bytes)

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

[#007] sha256:c36da779701e31511df27033e2a5e1b1ebdd0b7f4032cfab4a04c82139d7337a - 0.01% (4.68 KB)


History
2023-03-29 18:19:24 UTC

/bin/sh -c #(nop) ADD file:9a4f77dfaba7fd2aa78186e4ef0e7486ad55101cefc1fabbc1b385601bb38920 in /

2023-03-29 18:19:24 UTC

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

2023-03-30 01:47:13 UTC

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

2023-03-30 01:47:13 UTC

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

2023-03-30 01:47:13 UTC

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

2023-03-30 01:47:13 UTC

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

2023-03-30 01:47:14 UTC

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

2023-03-30 01:47:14 UTC

/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

2023-03-30 01:49:58 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-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 --with-zstd ; 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 --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-03-30 01:49: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

2023-03-30 01:49:59 UTC

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

2023-03-30 01:49:59 UTC

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

2023-03-30 01:50:00 UTC

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

2023-03-30 01:50:00 UTC

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

2023-03-30 01:50:00 UTC

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

2023-03-30 01:50:00 UTC

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

2023-03-30 01:50:00 UTC

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

2023-03-30 01:50:00 UTC

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

2023-03-30 01:50:00 UTC

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

Details
Created

2023-04-07 23:59:30 UTC

Size

87.7 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

15

PG_SHA256

99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

PG_VERSION

15.2


Layers

[#000] sha256:75257e753735e4ff78fae2d44018022a6ac775290e02103713a70699ece7576e - 3.38% (2.97 MB)

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

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

[#003] sha256:9ca13860c2c345b6ccc384a356a8d5169b1748894b4786503cfb64ab48a90443 - 96.6% (84.7 MB)

[#004] sha256:4bd6ff49bbc933ff50d1ba5f18a160ab10954f5e82ec271455d7d9a39a982cbb - 0.01% (9.23 KB)

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

[#006] sha256:b10dfb191957e2babf06a6676d5576dee19072ce7f1d21e6a2a7f44c6fb36a55 - 0.0% (196 Bytes)

[#007] sha256:04205c0210a9ad3c76705e8a50d47bc7e31c1429e336d4fc332b2bae1c98d928 - 0.01% (4.68 KB)


History
2023-03-29 18:01:09 UTC

/bin/sh -c #(nop) ADD file:2dd294d20c0b500c8fed6b410b059429b36f51cd48a45eaf7a06ecbef9e2a3bb in /

2023-03-29 18:01:09 UTC

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

2023-04-07 23:56:12 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

2023-04-07 23:56:12 UTC

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

2023-04-07 23:56:12 UTC

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

2023-04-07 23:56:12 UTC

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

2023-04-07 23:56:12 UTC

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

2023-04-07 23:56:13 UTC

/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

2023-04-07 23:59:27 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 lz4-dev zstd-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 --with-zstd ; 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 --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-04-07 23:59: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

2023-04-07 23:59:29 UTC

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

2023-04-07 23:59:29 UTC

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

2023-04-07 23:59:30 UTC

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

2023-04-07 23:59:30 UTC

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

2023-04-07 23:59:30 UTC

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

2023-04-07 23:59:30 UTC

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

2023-04-07 23:59:30 UTC

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

2023-04-07 23:59:30 UTC

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

2023-04-07 23:59:30 UTC

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

Details
Created

2023-03-30 01:33:58 UTC

Size

82.5 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

15

PG_SHA256

99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

PG_VERSION

15.2


Layers

[#000] sha256:fd4b2aeb476b6c2c0c3049dae919de20fe09e90deac95e3181d717055cbe6707 - 3.31% (2.74 MB)

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

[#002] sha256:0a7a8a823bf099159d4dae6e3199708a6fcd5296c8b8dcf33abcff6900f6e2ce - 0.0% (144 Bytes)

[#003] sha256:85adc042831cec624e6ec1f0a7c0303718e9149e41c2a37f2af0e1ca0a45d877 - 96.67% (79.8 MB)

[#004] sha256:dcf1e4e271e42217e0cb6722addf55d7fad469f670eaf20da7c33dc733816917 - 0.01% (9.23 KB)

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

[#006] sha256:fcf55927964bfddda162a5275e1b2d8b6a0d593da30cb221f8b08b2329e50d1e - 0.0% (195 Bytes)

[#007] sha256:8c4630ce41e6affeb4ba3434272285e00e14009880237bc852233afb38eee1ca - 0.01% (4.68 KB)


History
2023-03-29 18:03:38 UTC

/bin/sh -c #(nop) ADD file:959fa0ffb60c37c4fdc0d32ac31511f8dead32ef7f4bd848b11ff144a6b37012 in /

2023-03-29 18:03:38 UTC

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

2023-03-30 01:31:43 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

2023-03-30 01:31:43 UTC

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

2023-03-30 01:31:44 UTC

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

2023-03-30 01:31:44 UTC

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

2023-03-30 01:31:44 UTC

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

2023-03-30 01:31:44 UTC

/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

2023-03-30 01:33:56 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 lz4-dev zstd-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 --with-zstd ; 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 --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-03-30 01:33:57 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

2023-03-30 01:33:57 UTC

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

2023-03-30 01:33:57 UTC

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

2023-03-30 01:33:58 UTC

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

2023-03-30 01:33:58 UTC

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

2023-03-30 01:33:58 UTC

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

2023-03-30 01:33:58 UTC

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

2023-03-30 01:33:58 UTC

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

2023-03-30 01:33:58 UTC

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

2023-03-30 01:33:58 UTC

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

Details
Created

2023-03-30 05:19:22 UTC

Size

87.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

15

PG_SHA256

99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

PG_VERSION

15.2


Layers

[#000] sha256:c41833b44d910632b415cd89a9cdaa4d62c9725dc56c99a7ddadafd6719960f9 - 3.55% (3.11 MB)

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

[#002] sha256:f607b407e77d670d9994288846b4aa232a6fe6e96aa01e8b3854d40c4783cde3 - 0.0% (147 Bytes)

[#003] sha256:f664d638d37b9b9809bd02b620fa7e57215e5dbc7e5ce01b4e12f8985e747d1c - 96.43% (84.5 MB)

[#004] sha256:700069113fa6225b28cf7aae9c95ad4443fd622b2f23635a624a60800ed177e0 - 0.01% (9.23 KB)

[#005] sha256:581a482a9ff54fa90befd898d08584b47a1c1f5044ec15b34f4eb5e86c779b95 - 0.0% (160 Bytes)

[#006] sha256:1c5aef15b7cb42436f53f352bdabec68425427b842da98a5df49fc2823a1f507 - 0.0% (196 Bytes)

[#007] sha256:b0ba1c9c1836351ad175dc62bd7ef30c6e14679b3e56aeb88333575eb37c72ea - 0.01% (4.68 KB)


History
2023-03-29 17:39:18 UTC

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

2023-03-29 17:39:18 UTC

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

2023-03-30 05:17:20 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

2023-03-30 05:17:20 UTC

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

2023-03-30 05:17:21 UTC

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

2023-03-30 05:17:21 UTC

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

2023-03-30 05:17:21 UTC

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

2023-03-30 05:17:21 UTC

/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

2023-03-30 05:19:20 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 lz4-dev zstd-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 --with-zstd ; 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 --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-03-30 05:19:21 UTC

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

2023-03-30 05:19:21 UTC

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

2023-03-30 05:19:22 UTC

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

2023-03-30 05:19:22 UTC

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

2023-03-30 05:19:22 UTC

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

2023-03-30 05:19:22 UTC

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

2023-03-30 05:19:22 UTC

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

2023-03-30 05:19:22 UTC

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

2023-03-30 05:19:22 UTC

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

2023-03-30 05:19:22 UTC

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

Details
Created

2023-03-30 00:04:38 UTC

Size

95.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

15

PG_SHA256

99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

PG_VERSION

15.2


Layers

[#000] sha256:1b7d25764eb3d3c55d73f5dfb9e3e9d75f3f39132e1b16142319de2a062dd673 - 3.39% (3.23 MB)

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

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

[#003] sha256:b81d800b38b035017a3c8933fda9e1d835578b7e310a053b56a054939455c5e2 - 96.59% (92.1 MB)

[#004] sha256:0d2072086d9aa29ee91e274794786ee3fd7f1dbfe0476c819cce1e2216de9978 - 0.01% (9.23 KB)

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

[#006] sha256:5447a1a012f6314a7e33b3d861dee7e8ba40329d79e06d71138af94d8d45f9fa - 0.0% (196 Bytes)

[#007] sha256:ee4b180a4814e23351e1f942a906c61e4102e77c464b335984361b77e328c790 - 0.0% (4.68 KB)


History
2023-03-29 18:16:27 UTC

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

2023-03-29 18:16:28 UTC

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

2023-03-30 00:00:43 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

2023-03-30 00:00:43 UTC

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

2023-03-30 00:00:44 UTC

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

2023-03-30 00:00:45 UTC

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

2023-03-30 00:00:45 UTC

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

2023-03-30 00:00:45 UTC

/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

2023-03-30 00:04:26 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 lz4-dev zstd-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 --with-zstd ; 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 --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-03-30 00:04:33 UTC

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

2023-03-30 00:04:34 UTC

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

2023-03-30 00:04:35 UTC

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

2023-03-30 00:04:36 UTC

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

2023-03-30 00:04:37 UTC

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

2023-03-30 00:04:37 UTC

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

2023-03-30 00:04:37 UTC

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

2023-03-30 00:04:38 UTC

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

2023-03-30 00:04:38 UTC

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

2023-03-30 00:04:38 UTC

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

Details
Created

2023-05-03 14:21:25 UTC

Size

92 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

15

PG_SHA256

99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

PG_VERSION

15.2


Layers

[#000] sha256:a76f78d8854217635d8049ec8501edb806f961e72989cfff8503982e6ff2579d - 3.29% (3.03 MB)

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

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

[#003] sha256:bc36671a2cbb1a656ba811ee87ccc8ff34fcf282aaf7f320d68525cd842746bd - 96.69% (89 MB)

[#004] sha256:4b0e8134d345f8c9380e6784e41f22c958fe14a2bb1780c2fc75177413fca5f9 - 0.01% (9.23 KB)

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

[#006] sha256:365f482ee012bf730497a2dabac2c9308d3e70f73d353f00876aa12dbee23d81 - 0.0% (193 Bytes)

[#007] sha256:679062a121df588e34ffd4b8de47c5bf9ff1a4ba762400d6ebf1603024861e38 - 0.0% (4.68 KB)


History
2023-03-29 17:41:57 UTC

/bin/sh -c #(nop) ADD file:675ad8acf4b076e34aeeba26dd482be7640df5912b1ec5e3183b7eb69c01e83e in /

2023-03-29 17:41:57 UTC

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

2023-05-03 14:17: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

2023-05-03 14:17:12 UTC

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

2023-05-03 14:17:13 UTC

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

2023-05-03 14:17:13 UTC

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

2023-05-03 14:17:14 UTC

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

2023-05-03 14:17:14 UTC

/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7

2023-05-03 14:20: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 lz4-dev zstd-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 --with-zstd ; 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 --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-05-03 14:21: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

2023-05-03 14:21:19 UTC

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

2023-05-03 14:21:20 UTC

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

2023-05-03 14:21:21 UTC

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

2023-05-03 14:21:22 UTC

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

2023-05-03 14:21:22 UTC

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

2023-05-03 14:21:23 UTC

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

2023-05-03 14:21:23 UTC

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

2023-05-03 14:21:24 UTC

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

2023-05-03 14:21:25 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