Namespace
library
Image / Tag
postgres:11.19-alpine3.17
Content Digest
sha256:8623ded09129743dda3a5306846cbdd394c4cac4fd8c04807b54ca31052a0144
Details
Created

2023-03-29 22:17:36 UTC

Size

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

11

PG_SHA256

13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

PG_VERSION

11.19


Layers

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

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

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

[#003] sha256:3923bd03cf1b44bc9eefc44463483b218e39df3e21a0af6ededefbbbb748aebc - 96.39% (87.2 MB)

[#004] sha256:b9fa4e717f82f0b2d870533db54592f56777540ec4182a7174ad7c81a6d14039 - 0.01% (7.8 KB)

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

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

[#007] sha256:65e25e0b3369b16452c8c1ce02172528215ce1035246957188175fabdf557394 - 0.01% (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 22:13:21 UTC

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

2023-03-29 22:13:22 UTC

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

2023-03-29 22:13:22 UTC

/bin/sh -c #(nop) ENV PG_SHA256=13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

2023-03-29 22:17:32 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --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 22:17:34 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 22:17:34 UTC

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

2023-03-29 22:17:34 UTC

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

2023-03-29 22:17:35 UTC

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

2023-03-29 22:17:35 UTC

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

2023-03-29 22:17:35 UTC

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

2023-03-29 22:17:35 UTC

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

2023-03-29 22:17:35 UTC

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

2023-03-29 22:17:36 UTC

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

2023-03-29 22:17:36 UTC

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

Details
Created

2023-03-30 02:01:05 UTC

Size

86 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

11

PG_SHA256

13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

PG_VERSION

11.19


Layers

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

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

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

[#003] sha256:35e1c174159ff443707bd227d11b0e71fab945d9f4c9964cde5bdb9975583372 - 96.24% (82.8 MB)

[#004] sha256:e49d4caaadd03f99193057ffaeac16ada5940a05dbab1bebadb1d9ab2975b4e1 - 0.01% (7.8 KB)

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

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

[#007] sha256:4706653d67e6d8700f3147ded50bd371a1d28773f2aa47311fd9acc4db10276f - 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:58:36 UTC

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

2023-03-30 01:58:36 UTC

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

2023-03-30 01:58:36 UTC

/bin/sh -c #(nop) ENV PG_SHA256=13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

2023-03-30 02:01:03 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --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 02:01:04 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 02:01:04 UTC

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

2023-03-30 02:01:04 UTC

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

2023-03-30 02:01:05 UTC

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

2023-03-30 02:01:05 UTC

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

2023-03-30 02:01:05 UTC

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

2023-03-30 02:01:05 UTC

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

2023-03-30 02:01:05 UTC

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

2023-03-30 02:01:05 UTC

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

2023-03-30 02:01:05 UTC

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

Details
Created

2023-04-08 00:13:22 UTC

Size

84 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

11

PG_SHA256

13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

PG_VERSION

11.19


Layers

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

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

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

[#003] sha256:b4dad3434ab3a08b557a81ae8d8a28929fba7a990f544ee0ffbbc00e3107cd3e - 96.45% (81.1 MB)

[#004] sha256:c26d60634280a3c55edc06f8d390c050047ce36209946d1db30f860f1b3622c2 - 0.01% (7.8 KB)

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

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

[#007] sha256:a220d7a6843ae82ad2c428a6d01c322e676bb9f00b08dba52b87ce6ff8a2428f - 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-08 00:10:42 UTC

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

2023-04-08 00:10:42 UTC

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

2023-04-08 00:10:42 UTC

/bin/sh -c #(nop) ENV PG_SHA256=13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

2023-04-08 00:13:19 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --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-08 00:13: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-04-08 00:13:21 UTC

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

2023-04-08 00:13:21 UTC

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

2023-04-08 00:13:22 UTC

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

2023-04-08 00:13:22 UTC

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

2023-04-08 00:13:22 UTC

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

2023-04-08 00:13:22 UTC

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

2023-04-08 00:13:22 UTC

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

2023-04-08 00:13:22 UTC

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

2023-04-08 00:13:22 UTC

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

Details
Created

2023-04-08 03:00:33 UTC

Size

79.1 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

11

PG_SHA256

13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

PG_VERSION

11.19


Layers

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

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

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

[#003] sha256:b72aaab5702130af38b65ae78c5629bc01e815b760d422a7e2a8f09d8045780b - 96.52% (76.3 MB)

[#004] sha256:306c71d1296cad005afa2416dc5de9bf8dd787e666446a53a548b54b84d7f6da - 0.01% (7.8 KB)

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

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

[#007] sha256:e17106dc79dfdaf7f6fbc9de10407fb32aa2dd5bbe0e8f325178aa503e1c2da2 - 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-04-08 02:58:32 UTC

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

2023-04-08 02:58:32 UTC

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

2023-04-08 02:58:32 UTC

/bin/sh -c #(nop) ENV PG_SHA256=13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

2023-04-08 03:00:31 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --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-08 03:00:32 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-08 03:00:32 UTC

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

2023-04-08 03:00:32 UTC

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

2023-04-08 03:00:33 UTC

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

2023-04-08 03:00:33 UTC

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

2023-04-08 03:00:33 UTC

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

2023-04-08 03:00:33 UTC

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

2023-04-08 03:00:33 UTC

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

2023-04-08 03:00:33 UTC

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

2023-04-08 03:00:33 UTC

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

Details
Created

2023-03-30 05:27:28 UTC

Size

83.9 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

11

PG_SHA256

13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

PG_VERSION

11.19


Layers

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

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

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

[#003] sha256:cfa31f5b6bf960cd2a80e343f51b89f4577a20cc46fd47699402d9f12fa7c0ac - 96.28% (80.8 MB)

[#004] sha256:791ba0bb21ac1d8337ffd21d24a14c4d56499206f1ed628c6c3b4475b5f54c21 - 0.01% (7.8 KB)

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

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

[#007] sha256:e56a9f3d985974f9f01e5d7b7cbc5aa16396f762dbc2c03c5c4f3b5342a374e8 - 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:25:39 UTC

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

2023-03-30 05:25:39 UTC

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

2023-03-30 05:25:39 UTC

/bin/sh -c #(nop) ENV PG_SHA256=13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

2023-03-30 05:27:25 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --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:27:27 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:27:27 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:27:27 UTC

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

2023-03-30 05:27:28 UTC

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

2023-03-30 05:27:28 UTC

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

2023-03-30 05:27:28 UTC

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

2023-03-30 05:27:28 UTC

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

2023-03-30 05:27:28 UTC

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

2023-03-30 05:27:28 UTC

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

2023-03-30 05:27:28 UTC

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

Details
Created

2023-03-30 00:22:29 UTC

Size

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

11

PG_SHA256

13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

PG_VERSION

11.19


Layers

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

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

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

[#003] sha256:158f02727eebd8c5fb73e67aff10ff2687eeea65a04ba8da3daf1827b0703b42 - 96.45% (88.1 MB)

[#004] sha256:6f60e4024c2a2736990773a8ea58f2c04f2e8ffd7581bc426ed35d2b91447917 - 0.01% (7.8 KB)

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

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

[#007] sha256:a7937a291983839b6bb9d24b854e43df47daa864d3bef537001fdf94367fde26 - 0.01% (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:18:32 UTC

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

2023-03-30 00:18:32 UTC

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

2023-03-30 00:18:32 UTC

/bin/sh -c #(nop) ENV PG_SHA256=13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

2023-03-30 00:22: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 ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --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:22:24 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:22:26 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:22:26 UTC

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

2023-03-30 00:22:27 UTC

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

2023-03-30 00:22:28 UTC

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

2023-03-30 00:22:28 UTC

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

2023-03-30 00:22:28 UTC

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

2023-03-30 00:22:29 UTC

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

2023-03-30 00:22:29 UTC

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

2023-03-30 00:22:29 UTC

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

Details
Created

2023-05-03 15:08:13 UTC

Size

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

11

PG_SHA256

13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

PG_VERSION

11.19


Layers

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

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

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

[#003] sha256:a746f47328448c16d20b8cf3cbe5b46f7e545123dc26c8c60278cd78d9c65be9 - 96.55% (85.2 MB)

[#004] sha256:3a68d6f54bf22e2fa5ec0f04caa042841211fd6773dbea6c55dd02398687d2cf - 0.01% (7.8 KB)

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

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

[#007] sha256:ed4539553ccf56cf40a7a5b0e615050f5c974da7c5f0566a2ce72ef491e71773 - 0.01% (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 15:05:12 UTC

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

2023-05-03 15:05:12 UTC

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

2023-05-03 15:05:12 UTC

/bin/sh -c #(nop) ENV PG_SHA256=13109e2b71f1139405c27201da3733a61ace72ee1c228d9c9f0320e06aee14c2

2023-05-03 15:08: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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --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 15:08:08 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 15:08:09 UTC

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

2023-05-03 15:08:10 UTC

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

2023-05-03 15:08:11 UTC

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

2023-05-03 15:08:11 UTC

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

2023-05-03 15:08:12 UTC

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

2023-05-03 15:08:12 UTC

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

2023-05-03 15:08:12 UTC

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

2023-05-03 15:08:13 UTC

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

2023-05-03 15:08:13 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