Namespace
library
Image / Tag
postgres:13.10-alpine3.17
Content Digest
sha256:e19d2580ed0b2b52eeadd0f776b7ad91183d1fd886a1c3afcbb09c2308491782
Details
Created

2023-03-29 22:08:52 UTC

Size

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

13

PG_SHA256

5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

PG_VERSION

13.10


Layers

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

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

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

[#003] sha256:a2ae4cf693bd38ada954d89a8b530cbe9842c1b6504861e722576d1664ec6c60 - 96.46% (89 MB)

[#004] sha256:33598370ae5add76d81f5e90ea038e8dfc8d9d00a1788cef63711e9d7de54bdc - 0.01% (8.81 KB)

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

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

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


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

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

2023-03-29 17:38:30 UTC

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

2023-03-29 21:54:17 UTC

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

2023-03-29 21:54:17 UTC

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

2023-03-29 21:54:18 UTC

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

2023-03-29 22:04:19 UTC

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

2023-03-29 22:04:19 UTC

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

2023-03-29 22:04:19 UTC

/bin/sh -c #(nop) ENV PG_SHA256=5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

2023-03-29 22:08:48 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:08:50 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:08:50 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:08:51 UTC

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

2023-03-29 22:08:51 UTC

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

2023-03-29 22:08:51 UTC

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

2023-03-29 22:08:51 UTC

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

2023-03-29 22:08:51 UTC

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

2023-03-29 22:08:52 UTC

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

2023-03-29 22:08:52 UTC

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

2023-03-29 22:08:52 UTC

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

Details
Created

2023-03-30 01:55:38 UTC

Size

87.7 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

13

PG_SHA256

5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

PG_VERSION

13.10


Layers

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

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

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

[#003] sha256:874ea11cefcda6c5baad9effe7552737dc1fb77a3958f3da81cbdcc0f304695a - 96.31% (84.5 MB)

[#004] sha256:ef8405c7a1c024fdf283934fca4186e24cd7640919f5ce74fd85c07ed988902d - 0.01% (8.81 KB)

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

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

[#007] sha256:17f71bede1cd577d9b926032c6b98a74b07ee981af1b5a94dc8a1d3183e4fbeb - 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:53:02 UTC

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

2023-03-30 01:53:02 UTC

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

2023-03-30 01:53:02 UTC

/bin/sh -c #(nop) ENV PG_SHA256=5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

2023-03-30 01:55:36 UTC

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

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

2023-03-30 01:55:37 UTC

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

2023-03-30 01:55:37 UTC

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

2023-03-30 01:55:38 UTC

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

2023-03-30 01:55:38 UTC

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

2023-03-30 01:55:38 UTC

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

2023-03-30 01:55:38 UTC

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

2023-03-30 01:55:38 UTC

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

2023-03-30 01:55:38 UTC

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

2023-03-30 01:55:38 UTC

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

Details
Created

2023-04-08 00:05:36 UTC

Size

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

13

PG_SHA256

5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

PG_VERSION

13.10


Layers

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

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

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

[#003] sha256:03b2d86df139e5de280e15b3e9cceee0fa2c5613030d190e2a78196a60eacc74 - 96.52% (82.7 MB)

[#004] sha256:67efac526efaf52f71b3fbe9aa822d4a3d8f1f81245dc16da94688cada8a091b - 0.01% (8.81 KB)

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

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

[#007] sha256:249b98532da53e484d4a59f84f572f61d1d19bd9a7c20172f8ceaed9b3036dd0 - 0.01% (4.67 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:02:41 UTC

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

2023-04-08 00:02:41 UTC

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

2023-04-08 00:02:41 UTC

/bin/sh -c #(nop) ENV PG_SHA256=5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

2023-04-08 00:05:33 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:05: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-04-08 00:05:35 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:05:35 UTC

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

2023-04-08 00:05:35 UTC

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

2023-04-08 00:05:36 UTC

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

2023-04-08 00:05:36 UTC

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

2023-04-08 00:05:36 UTC

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

2023-04-08 00:05:36 UTC

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

2023-04-08 00:05:36 UTC

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

2023-04-08 00:05:36 UTC

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

Details
Created

2023-04-08 02:56:21 UTC

Size

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

13

PG_SHA256

5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

PG_VERSION

13.10


Layers

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

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

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

[#003] sha256:e81a8dacd1c064fc2bc68584329cd9e460de482c92bd4d2a97688424999074a5 - 96.59% (77.9 MB)

[#004] sha256:b47125c7f44f72f781b5801bbef67cc7d5c92b710f2cccbd242cd8ff91b63663 - 0.01% (8.81 KB)

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

[#006] sha256:933ae7d75d8688d117c19bb06d16b27db034588090f0caf1abc3dae7f80e62c8 - 0.0% (197 Bytes)

[#007] sha256:a50eb327eb5d87ddde027ec8721d371ee11faf037ec0968e32a1c7128808e949 - 0.01% (4.67 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:54:15 UTC

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

2023-04-08 02:54:15 UTC

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

2023-04-08 02:54:15 UTC

/bin/sh -c #(nop) ENV PG_SHA256=5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

2023-04-08 02:56:18 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 02:56:19 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 02:56:20 UTC

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

2023-04-08 02:56:20 UTC

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

2023-04-08 02:56:21 UTC

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

2023-04-08 02:56:21 UTC

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

2023-04-08 02:56:21 UTC

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

2023-04-08 02:56:21 UTC

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

2023-04-08 02:56:21 UTC

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

2023-04-08 02:56:21 UTC

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

2023-04-08 02:56:21 UTC

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

Details
Created

2023-03-30 05:23:30 UTC

Size

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

13

PG_SHA256

5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

PG_VERSION

13.10


Layers

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

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

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

[#003] sha256:4182bce2c8d6802a39540d57d59d3480e938d5666e62a06f72167d2657e6d1f9 - 96.35% (82.5 MB)

[#004] sha256:c7d5acd4167f165e9171abae07d1210e7be84fa78b141ef5435ab71de0604705 - 0.01% (8.81 KB)

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

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

[#007] sha256:cb19088ff096849919e2117f59481c346a33d700b163396c766fc1ffb8d82148 - 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:21:37 UTC

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

2023-03-30 05:21:37 UTC

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

2023-03-30 05:21:37 UTC

/bin/sh -c #(nop) ENV PG_SHA256=5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

2023-03-30 05:23:27 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; 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:23:28 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:23:29 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:23:29 UTC

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

2023-03-30 05:23:29 UTC

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

2023-03-30 05:23:29 UTC

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

2023-03-30 05:23:29 UTC

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

2023-03-30 05:23:30 UTC

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

2023-03-30 05:23:30 UTC

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

2023-03-30 05:23:30 UTC

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

2023-03-30 05:23:30 UTC

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

Details
Created

2023-03-30 00:14:31 UTC

Size

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

13

PG_SHA256

5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

PG_VERSION

13.10


Layers

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

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

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

[#003] sha256:670b39168f7abe59101a2fa4fa7c154515ab3684667c9457c82759ab15dabea6 - 96.51% (89.9 MB)

[#004] sha256:dc37c8dd3b99da1693e1d4988abe072f796b5a39bb0cff298162eb88faec4fe2 - 0.01% (8.81 KB)

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

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

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


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

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

2023-03-29 18:16:28 UTC

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

2023-03-30 00:00:43 UTC

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

2023-03-30 00:00:43 UTC

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

2023-03-30 00:00:44 UTC

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

2023-03-30 00:10:07 UTC

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

2023-03-30 00:10:07 UTC

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

2023-03-30 00:10:08 UTC

/bin/sh -c #(nop) ENV PG_SHA256=5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

2023-03-30 00:14:22 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:14:26 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:14: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 00:14:27 UTC

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

2023-03-30 00:14:29 UTC

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

2023-03-30 00:14:29 UTC

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

2023-03-30 00:14:30 UTC

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

2023-03-30 00:14:30 UTC

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

2023-03-30 00:14:30 UTC

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

2023-03-30 00:14:31 UTC

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

2023-03-30 00:14:31 UTC

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

Details
Created

2023-05-03 14:49:22 UTC

Size

90 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

13

PG_SHA256

5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

PG_VERSION

13.10


Layers

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

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

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

[#003] sha256:961a52d765a8578baca228cc82d4a8ede559d410e42cc1b04939e70ec1db403d - 96.62% (86.9 MB)

[#004] sha256:dd76fcf8cd7da79ff3cb987321aafda16c38d1d729a02283d190cc621a128c5c - 0.01% (8.81 KB)

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

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

[#007] sha256:f3bfc7cfadb71cab200caf8a24060a1351872ac2d4a49863512fdb6515848aa6 - 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 14:46:07 UTC

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

2023-05-03 14:46:08 UTC

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

2023-05-03 14:46:08 UTC

/bin/sh -c #(nop) ENV PG_SHA256=5bbcf5a56d85c44f3a8b058fb46862ff49cbc91834d07e295d02e6de3c216df2

2023-05-03 14:49:16 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 14:49:20 UTC

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

2023-05-03 14:49:21 UTC

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

2023-05-03 14:49:21 UTC

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

2023-05-03 14:49:21 UTC

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

2023-05-03 14:49:22 UTC

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

2023-05-03 14:49:22 UTC

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

2023-05-03 14:49:22 UTC

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

2023-05-03 14:49:22 UTC

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

2023-05-03 14:49:22 UTC

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

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