Namespace
library
Image / Tag
postgres:15rc1-alpine3.16
Content Digest
sha256:a565aa880a08838742b2ee86ecfc702277551e4191ebd1f39de1277519c6ac74
Details
Created

2022-10-06 23:02:44 UTC

Size

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

576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

PG_VERSION

15rc1


Layers

[#000] sha256:6c0d3b419d848ea31ca748254611d5d5ce3b76e3d7bba520fd87400fbb75f3b9 - 3.1% (2.68 MB)

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

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

[#003] sha256:2ceef4e0c1ee03cc4185669ae46fc0bfd292a1f9fe750d91af0ced2148e09daa - 96.89% (83.8 MB)

[#004] sha256:035405de074d739f5dd83786d4c284e3644a618da09cf2eed9bdf4126535b635 - 0.01% (9.24 KB)

[#005] sha256:6bd48f581bd6daf130df58e5a596dd56a14b3aaab009e7171effa23062f0063c - 0.0% (129 Bytes)

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

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


History
2022-08-09 17:38:39 UTC

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

2022-08-09 17:38:39 UTC

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

2022-10-06 22:58:32 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-10-06 22:58:33 UTC

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

2022-10-06 22:58:34 UTC

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

2022-10-06 22:58:35 UTC

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

2022-10-06 22:58:36 UTC

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

2022-10-06 22:58:37 UTC

/bin/sh -c #(nop) ENV PG_SHA256=576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

2022-10-06 23:02:34 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-06 23:02:35 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-10-06 23:02:36 UTC

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

2022-10-06 23:02:37 UTC

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

2022-10-06 23:02:38 UTC

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

2022-10-06 23:02:39 UTC

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

2022-10-06 23:02:41 UTC

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

2022-10-06 23:02:41 UTC

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

2022-10-06 23:02:42 UTC

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

2022-10-06 23:02:43 UTC

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

2022-10-06 23:02:44 UTC

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

Details
Created

2022-10-07 01:14:07 UTC

Size

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

576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

PG_VERSION

15rc1


Layers

[#000] sha256:213ec9aee27d8be045c6a92b7eac22c9a64b44558193775a1a7f626352392b49 - 3.29% (2.68 MB)

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

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

[#003] sha256:8cb4be8375c6f90481d5aa9cbfae45eb4e52c125886620d4738f47a96c7afdfd - 96.69% (78.7 MB)

[#004] sha256:bcaeaebb2dbd74d6e1d70c7ce16aa489f249dc78af0b075754a3d993aa5975c2 - 0.01% (9.25 KB)

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

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

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


History
2022-08-09 17:19:53 UTC

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

2022-08-09 17:19:53 UTC

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

2022-10-07 01:10:45 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-10-07 01:10:45 UTC

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

2022-10-07 01:10:45 UTC

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

2022-10-07 01:10:45 UTC

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

2022-10-07 01:10:46 UTC

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

2022-10-07 01:10:46 UTC

/bin/sh -c #(nop) ENV PG_SHA256=576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

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

2022-10-07 01:14:05 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-10-07 01:14:06 UTC

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

2022-10-07 01:14:06 UTC

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

2022-10-07 01:14:07 UTC

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

2022-10-07 01:14:07 UTC

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

2022-10-07 01:14:07 UTC

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

2022-10-07 01:14:07 UTC

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

2022-10-07 01:14:07 UTC

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

2022-10-07 01:14:07 UTC

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

2022-10-07 01:14:07 UTC

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

Details
Created

2022-10-07 16:08:48 UTC

Size

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

576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

PG_VERSION

15rc1


Layers

[#000] sha256:9506b835437abb4d8ba1683e00c500b8f77e1975e930b356fbb72f2dbdc274d9 - 3.13% (2.49 MB)

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

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

[#003] sha256:00160c9c1a0c4adfdfcba0336d57677540d100a8c8c55bca6084a8d2162da1f6 - 96.85% (77.1 MB)

[#004] sha256:5f935f59531da0db2dec1db1317d8e7b173c3627590f7f735f25af7e7a651932 - 0.01% (9.24 KB)

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

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

[#007] sha256:84773400480a3ec65ca37fdcca638ba6a81687f44b0a990bb20cedd3215f46ad - 0.01% (4.6 KB)


History
2022-08-09 17:49:22 UTC

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

2022-08-09 17:49:22 UTC

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

2022-10-07 15:56:27 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-10-07 15:56:28 UTC

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

2022-10-07 15:56:28 UTC

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

2022-10-07 15:56:28 UTC

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

2022-10-07 15:56:28 UTC

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

2022-10-07 15:56:29 UTC

/bin/sh -c #(nop) ENV PG_SHA256=576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

2022-10-07 16:08:44 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-07 16:08:45 UTC

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

2022-10-07 16:08:46 UTC

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

2022-10-07 16:08:46 UTC

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

2022-10-07 16:08:47 UTC

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

2022-10-07 16:08:47 UTC

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

2022-10-07 16:08:47 UTC

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

2022-10-07 16:08:47 UTC

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

2022-10-07 16:08:47 UTC

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

2022-10-07 16:08:48 UTC

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

2022-10-07 16:08:48 UTC

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

Details
Created

2022-09-30 19:34:11 UTC

Size

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

15

PG_SHA256

576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

PG_VERSION

15rc1


Layers

[#000] sha256:c6556b3b6858c6fa1e328377cc2c4becdc9cd1bc3e7302aa7299936522cf93ba - 3.08% (2.31 MB)

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

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

[#003] sha256:f0500eae4e14c3ae4fb2d0bfb57ccb393a4ba4dcb11c21f38bfd13c29415b707 - 96.9% (72.6 MB)

[#004] sha256:c8b43648aa68c45dd5ca8d62469bf5a892e1bb5289162a280a604d76f8dd1d5e - 0.01% (9.24 KB)

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

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

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


History
2022-08-09 16:57:44 UTC

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

2022-08-09 16:57:44 UTC

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

2022-08-10 19:31:18 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-08-10 19:31:18 UTC

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

2022-08-10 19:31:19 UTC

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

2022-08-10 19:31:19 UTC

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

2022-09-30 19:27:32 UTC

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

2022-09-30 19:27:32 UTC

/bin/sh -c #(nop) ENV PG_SHA256=576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

2022-09-30 19:34:09 UTC

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

2022-09-30 19:34: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-09-30 19:34:10 UTC

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

2022-09-30 19:34:10 UTC

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

2022-09-30 19:34:11 UTC

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

2022-09-30 19:34:11 UTC

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

2022-09-30 19:34:11 UTC

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

2022-09-30 19:34:11 UTC

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

2022-09-30 19:34:11 UTC

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

2022-09-30 19:34:11 UTC

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

2022-09-30 19:34:11 UTC

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

Details
Created

2022-10-07 04:09:16 UTC

Size

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

576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

PG_VERSION

15rc1


Layers

[#000] sha256:9b18e9b68314027565b90ff6189d65942c0f7986da80df008b8431276885218e - 3.22% (2.58 MB)

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

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

[#003] sha256:bc3f51735b9c1505858c965ad4547b0f2f7a2fd85de93ab1cd2d0f83d84818ff - 96.77% (77.7 MB)

[#004] sha256:c58a1b99f9f9bcebe0cb75a12c54130a32edf40c97a1d0172df544da1ee191f9 - 0.01% (9.24 KB)

[#005] sha256:75fffe2dbd3457a46c73b167b372947dab54503a9fa4f95bd5da7ac6752ea400 - 0.0% (128 Bytes)

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

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


History
2022-08-09 17:39:41 UTC

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

2022-08-09 17:39:42 UTC

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

2022-10-07 04:05:38 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-10-07 04:05:39 UTC

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

2022-10-07 04:05:40 UTC

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

2022-10-07 04:05:41 UTC

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

2022-10-07 04:05:42 UTC

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

2022-10-07 04:05:43 UTC

/bin/sh -c #(nop) ENV PG_SHA256=576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

2022-10-07 04:09:07 UTC

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

2022-10-07 04:09: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

2022-10-07 04:09:08 UTC

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

2022-10-07 04:09:09 UTC

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

2022-10-07 04:09:10 UTC

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

2022-10-07 04:09:11 UTC

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

2022-10-07 04:09:13 UTC

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

2022-10-07 04:09:13 UTC

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

2022-10-07 04:09:14 UTC

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

2022-10-07 04:09:15 UTC

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

2022-10-07 04:09:16 UTC

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

Details
Created

2022-10-07 02:30:36 UTC

Size

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

576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

PG_VERSION

15rc1


Layers

[#000] sha256:c79e5d1a8c89b87020a754c8a5c8370faaa37bfb5bca1d8af66770d522ef1caf - 3.06% (2.67 MB)

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

[#002] sha256:6dca1982ca555c7b16501b90c9ee856d6d3a531258352fd09a5db82ef45f9984 - 0.0% (148 Bytes)

[#003] sha256:2cde9e4bf10d8474203d44c8470b3ce721de695814a3957bacc0c7b42613b17f - 96.92% (84.7 MB)

[#004] sha256:71b523db6a281275ad717c6271abcd5bf4af87ce50ca7d11fa589ee245347c38 - 0.01% (9.25 KB)

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

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

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


History
2022-08-09 17:17:09 UTC

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

2022-08-09 17:17:10 UTC

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

2022-10-07 02:25:58 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-10-07 02:25:59 UTC

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

2022-10-07 02:26:00 UTC

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

2022-10-07 02:26:00 UTC

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

2022-10-07 02:26:01 UTC

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

2022-10-07 02:26:01 UTC

/bin/sh -c #(nop) ENV PG_SHA256=576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

2022-10-07 02:30:28 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-07 02:30: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

2022-10-07 02:30:33 UTC

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

2022-10-07 02:30:33 UTC

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

2022-10-07 02:30:34 UTC

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

2022-10-07 02:30:34 UTC

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

2022-10-07 02:30:35 UTC

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

2022-10-07 02:30:35 UTC

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

2022-10-07 02:30:35 UTC

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

2022-10-07 02:30:36 UTC

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

2022-10-07 02:30:36 UTC

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

Details
Created

2022-10-07 03:40:06 UTC

Size

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

576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

PG_VERSION

15rc1


Layers

[#000] sha256:790c84f1f3409eab952345157df7fa804ba6b5f06d4ceb6f2dfa3c6de2064397 - 2.99% (2.47 MB)

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

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

[#003] sha256:d5cfa7675041abe02577686daaff10071e243460dca0fe9ca2b9a6a62ee20bcb - 96.99% (80.1 MB)

[#004] sha256:370604c1af8483417520cca9857ca1e2701b04b598b3a9f683e053f95e67f222 - 0.01% (9.24 KB)

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

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

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


History
2022-08-09 17:41:46 UTC

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

2022-08-09 17:41:46 UTC

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

2022-10-07 03:35:39 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-10-07 03:35:39 UTC

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

2022-10-07 03:35:41 UTC

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

2022-10-07 03:35:41 UTC

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

2022-10-07 03:35:41 UTC

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

2022-10-07 03:35:42 UTC

/bin/sh -c #(nop) ENV PG_SHA256=576476fab0d49f05f27625e1d6ed433e6e1358fabba92ae41780421e65fa7ad4

2022-10-07 03:39:52 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-07 03:40:02 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-10-07 03:40:03 UTC

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

2022-10-07 03:40:03 UTC

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

2022-10-07 03:40:04 UTC

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

2022-10-07 03:40:05 UTC

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

2022-10-07 03:40:05 UTC

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

2022-10-07 03:40:05 UTC

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

2022-10-07 03:40:05 UTC

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

2022-10-07 03:40:06 UTC

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

2022-10-07 03:40:06 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