Namespace
library
Image / Tag
postgres:14.3-alpine
Content Digest
sha256:5973fec8d8284c8961ac3c23945e52d533dd0d21cc7b3c7dd7a46fd199bed4a4
Details
Created

2022-06-06 20:58:30 UTC

Size

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

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:bb638a3869eed698f88775c7a48f36f8e22e7c6bbaa98fa1d5678966b619b859 - 3.11% (2.67 MB)

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

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

[#003] sha256:67e5d41256b5d29d8f1ab6a488717c0c8d7e1da6a0806810a18f188da61b3e35 - 96.87% (83.1 MB)

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

[#005] sha256:4a2bac65a04fb42638510190a17b8982c4da15e408f0310117db75b962a4d1d4 - 0.0% (129 Bytes)

[#006] sha256:a91cba87cfd795c5a94b486f18566192aacdc73a31ead7480d6860f6a46b7b47 - 0.0% (173 Bytes)

[#007] sha256:a5281a638a910ba9accc2c0dab9dc4ee1122eac6deb467fb1b47618d34f07b8f - 0.01% (4.59 KB)


History
2022-05-23 19:38:20 UTC

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

2022-05-23 19:38:20 UTC

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

2022-05-25 22:22:31 UTC

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

2022-05-25 22:22:32 UTC

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

2022-05-25 22:22:33 UTC

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

2022-05-25 22:27:04 UTC

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

2022-05-25 22:27:05 UTC

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

2022-05-25 22:27:06 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-06-06 20:58:21 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc 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 ; 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 zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-06-06 20:58:22 UTC

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

2022-06-06 20:58:22 UTC

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

2022-06-06 20:58:23 UTC

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

2022-06-06 20:58:24 UTC

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

2022-06-06 20:58:25 UTC

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

2022-06-06 20:58:27 UTC

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

2022-06-06 20:58:27 UTC

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

2022-06-06 20:58:28 UTC

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

2022-06-06 20:58:29 UTC

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

2022-06-06 20:58:30 UTC

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

Details
Created

2022-06-06 22:04:40 UTC

Size

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

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:2408cc74d12b6cd092bb8b516ba7d5e290f485d3eb9672efc00f0583730179e8 - 3.31% (2.67 MB)

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

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

[#003] sha256:1d64860787fe1df48e3ce4575d68957daf5b6399a562c015c239f4dc9698aec8 - 96.68% (78.1 MB)

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

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

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

[#007] sha256:d4526b6c68e31ea4fce041fbf8c8b99d93393f0216217b4ab4104538d583cf10 - 0.01% (4.59 KB)


History
2022-05-23 19:19:30 UTC

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

2022-05-23 19:19:31 UTC

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

2022-05-25 20:33:22 UTC

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

2022-05-25 20:33:22 UTC

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

2022-05-25 20:33:23 UTC

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

2022-05-25 20:37:47 UTC

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

2022-05-25 20:37:47 UTC

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

2022-05-25 20:37:47 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-06-06 22:04:37 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 ; 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 zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-06-06 22:04:38 UTC

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

2022-06-06 22:04:39 UTC

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

2022-06-06 22:04:39 UTC

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

2022-06-06 22:04:40 UTC

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

2022-06-06 22:04:40 UTC

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

2022-06-06 22:04:40 UTC

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

2022-06-06 22:04:40 UTC

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

2022-06-06 22:04:40 UTC

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

2022-06-06 22:04:40 UTC

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

2022-06-06 22:04:40 UTC

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

Details
Created

2022-06-06 21:40:55 UTC

Size

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

14

PG_SHA256

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:79a25ccaf940855872635c06e7614d9b27dd38ffb5a8adfdb9274dfdc0ea0d87 - 3.15% (2.49 MB)

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

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

[#003] sha256:f4245167616f1540b80c24c083e45620049d662006e21e2534ce1fffc6c0facd - 96.83% (76.4 MB)

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

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

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

[#007] sha256:58994e9708fbc67d087ab9373ad12d387463f9601aaed7b714825554aa6c2b5a - 0.01% (4.59 KB)


History
2022-05-23 19:49:32 UTC

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

2022-05-23 19:49:33 UTC

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

2022-05-25 22:54:04 UTC

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

2022-05-25 22:54:04 UTC

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

2022-05-25 22:54:06 UTC

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

2022-05-25 23:00:58 UTC

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

2022-05-25 23:00:58 UTC

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

2022-05-25 23:00:58 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-06-06 21:40:46 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 ; 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 zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-06-06 21:40:49 UTC

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

2022-06-06 21:40:51 UTC

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

2022-06-06 21:40:51 UTC

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

2022-06-06 21:40:53 UTC

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

2022-06-06 21:40:53 UTC

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

2022-06-06 21:40:53 UTC

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

2022-06-06 21:40:54 UTC

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

2022-06-06 21:40:54 UTC

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

2022-06-06 21:40:55 UTC

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

2022-06-06 21:40:55 UTC

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

Details
Created

2022-06-07 05:17:04 UTC

Size

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

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:6366ba92f08e2418e90171f1e34bd86ecd50fdc95953b3f33b8943c143518eca - 3.1% (2.3 MB)

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

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

[#003] sha256:07ad680d7c26fb4873bdbb4c5092e6544fb532e3f898b03ff9ee184066761951 - 96.88% (72 MB)

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

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

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

[#007] sha256:b10d50bc8575fe3f21e4e8ff5062675d4636198ea16009264fa448b7114031c3 - 0.01% (4.59 KB)


History
2022-05-23 18:57:46 UTC

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

2022-05-23 18:57:47 UTC

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

2022-05-25 20:19:26 UTC

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

2022-05-25 20:19:27 UTC

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

2022-05-25 20:19:29 UTC

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

2022-05-25 20:26:17 UTC

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

2022-05-25 20:26:18 UTC

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

2022-05-25 20:26:18 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-06-07 05:16: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 ; 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 zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-06-07 05:16:58 UTC

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

2022-06-07 05:16:59 UTC

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

2022-06-07 05:17:00 UTC

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

2022-06-07 05:17:01 UTC

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

2022-06-07 05:17:02 UTC

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

2022-06-07 05:17:02 UTC

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

2022-06-07 05:17:03 UTC

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

2022-06-07 05:17:03 UTC

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

2022-06-07 05:17:03 UTC

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

2022-06-07 05:17:04 UTC

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

Details
Created

2022-06-07 01:06:19 UTC

Size

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

14

PG_SHA256

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:b3c136eddcbf2003d3180787cef00f39d46b9fd9e4623178282ad6a8d63ad3b0 - 3.23% (2.57 MB)

[#001] sha256:428d3642719badb326ee04030ea97839d69d5a82b8306924e5ebcf3a65b191dc - 0.0% (1.23 KB)

[#002] sha256:9bd66d73c4e4594a6a582481c08b74269a6bda983845fb5018e8ff8e00fb5ec1 - 0.0% (115 Bytes)

[#003] sha256:b0e99221c0a5ad4f29ad397a9dfa561c3c31e517ca1ace5d6cdcd91ab528df64 - 96.76% (77.1 MB)

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

[#005] sha256:05e57b5f86b1894f90d42c4f682600ba824e03d5f9e061feb72632aad627d810 - 0.0% (129 Bytes)

[#006] sha256:336e3aa60b0274be2dc117e70d4567c51af82fd1a920e47e073c417958ae90a8 - 0.0% (172 Bytes)

[#007] sha256:ca633e0e7b1049c078bab05f0a3bc1bcfec0298b5bb25f881b39d746bb8e488b - 0.01% (4.59 KB)


History
2022-05-23 19:39:22 UTC

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

2022-05-23 19:39:22 UTC

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

2022-05-25 21:33:04 UTC

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

2022-05-25 21:33:05 UTC

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

2022-05-25 21:33:06 UTC

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

2022-05-25 21:37:07 UTC

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

2022-05-25 21:37:08 UTC

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

2022-05-25 21:37:09 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-06-07 01:06:10 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 ; 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 zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-06-07 01:06:11 UTC

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

2022-06-07 01:06:11 UTC

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

2022-06-07 01:06:12 UTC

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

2022-06-07 01:06:13 UTC

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

2022-06-07 01:06:14 UTC

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

2022-06-07 01:06:16 UTC

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

2022-06-07 01:06:16 UTC

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

2022-06-07 01:06:17 UTC

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

2022-06-07 01:06:18 UTC

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

2022-06-07 01:06:19 UTC

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

Details
Created

2022-06-07 05:12:58 UTC

Size

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

14

PG_SHA256

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:d3deabf2a506ef6f5fa7c2a68bf27047574cef9908b30a97ff2d01ae539b089a - 3.07% (2.66 MB)

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

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

[#003] sha256:ca11959cb1df4efa37b0ec8aa1676fb9017cff687f0536a030e0a0ec6a92c23c - 96.91% (84 MB)

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

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

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

[#007] sha256:4dbc01e85fb27134320f7b0f3460fa339c95d15edbe5d0cdca328d75c2d1b41d - 0.01% (4.59 KB)


History
2022-05-23 19:16:51 UTC

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

2022-05-23 19:16:53 UTC

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

2022-05-25 21:15:49 UTC

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

2022-05-25 21:15:52 UTC

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

2022-05-25 21:16:03 UTC

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

2022-05-25 21:21:47 UTC

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

2022-05-25 21:21:49 UTC

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

2022-05-25 21:21:53 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-06-07 05:12:21 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc 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 ; 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 zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-06-07 05:12:30 UTC

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

2022-06-07 05:12:36 UTC

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

2022-06-07 05:12:40 UTC

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

2022-06-07 05:12:46 UTC

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

2022-06-07 05:12:47 UTC

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

2022-06-07 05:12:48 UTC

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

2022-06-07 05:12:50 UTC

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

2022-06-07 05:12:52 UTC

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

2022-06-07 05:12:54 UTC

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

2022-06-07 05:12:58 UTC

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

Details
Created

2022-06-07 03:44:12 UTC

Size

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

14

PG_SHA256

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:af1ac1a73384e058591d04d19bc05a06781cc32d52d4593b468d6cb95eda9858 - 3.01% (2.46 MB)

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

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

[#003] sha256:978df1d2e4a450523d61b18329339d74c5d6f82fc05cc85e46c8f598e1755ed6 - 96.98% (79.4 MB)

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

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

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

[#007] sha256:336bf99ff45ffb510eef21fabf9b1c7b024baa38dabdcdfd3334538736bdc265 - 0.01% (4.59 KB)


History
2022-05-23 19:41:59 UTC

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

2022-05-23 19:42:10 UTC

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

2022-05-25 21:18:55 UTC

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

2022-05-25 21:18:56 UTC

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

2022-05-25 21:18:57 UTC

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

2022-05-25 21:23:41 UTC

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

2022-05-25 21:23:41 UTC

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

2022-05-25 21:23:41 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-06-07 03:44:05 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 ; 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 zstd icu-data-full ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-06-07 03:44:09 UTC

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

2022-06-07 03:44:10 UTC

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

2022-06-07 03:44:10 UTC

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

2022-06-07 03:44:11 UTC

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

2022-06-07 03:44:11 UTC

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

2022-06-07 03:44:11 UTC

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

2022-06-07 03:44:11 UTC

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

2022-06-07 03:44:11 UTC

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

2022-06-07 03:44:12 UTC

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

2022-06-07 03:44:12 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