Namespace
library
Image / Tag
postgres:12.11-alpine
Content Digest
sha256:6eca42e0c08b02c7cf53c8d60b735071165e22b9bb5e505e0b2a150f94fa84cb
Details
Created

2022-08-09 21:09:50 UTC

Size

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

12

PG_SHA256

1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

PG_VERSION

12.11


Layers

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

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

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

[#003] sha256:b6eb55d06032efc432555dbc9bdc44d29c155c9bad3657e248f58ceb23d4576b - 96.79% (81 MB)

[#004] sha256:dbbeb09e19b7340a3a30034e3716bd8da065b3b5a8c0357d3f06b765c01d6326 - 0.01% (8.49 KB)

[#005] sha256:538997a741344bb4d656ab0372a1c256d9d792fc80034ce3a3d033613704079b - 0.0% (129 Bytes)

[#006] sha256:fe533b37e8f6bb26a22cb14f19acb48451e90787eb1922a74add107294d5f51e - 0.0% (170 Bytes)

[#007] sha256:1d0abcf570119634c2145a4664dfd1a8f31f07ce398c74c31b125bbbf1b50150 - 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-08-09 20:53:15 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-09 20:53:16 UTC

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

2022-08-09 20:53:17 UTC

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

2022-08-09 21:06:08 UTC

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

2022-08-09 21:06:09 UTC

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

2022-08-09 21:06:10 UTC

/bin/sh -c #(nop) ENV PG_SHA256=1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

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

2022-08-09 21:09:41 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-08-09 21:09:42 UTC

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

2022-08-09 21:09:43 UTC

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

2022-08-09 21:09:44 UTC

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

2022-08-09 21:09:45 UTC

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

2022-08-09 21:09:47 UTC

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

2022-08-09 21:09:47 UTC

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

2022-08-09 21:09:48 UTC

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

2022-08-09 21:09:49 UTC

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

2022-08-09 21:09:50 UTC

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

Details
Created

2022-08-09 23:24:11 UTC

Size

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

12

PG_SHA256

1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

PG_VERSION

12.11


Layers

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

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

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

[#003] sha256:bd81f2ca8725b1a172017c33458b60f22ac89159b43ed40ce0bc07b4af6e0554 - 96.58% (76 MB)

[#004] sha256:3131bb88b0c366439e121c7a8e66add757c0ea7ff111f1a1e0903c9680c2f98b - 0.01% (8.49 KB)

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

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

[#007] sha256:01f499824d818ed433b74b5cb626d8beb4ec3cc71be806c54b5ccd919f6dd7bd - 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-08-09 23:10:36 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-09 23:10:37 UTC

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

2022-08-09 23:10:37 UTC

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

2022-08-09 23:21:07 UTC

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

2022-08-09 23:21:07 UTC

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

2022-08-09 23:21:07 UTC

/bin/sh -c #(nop) ENV PG_SHA256=1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

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

2022-08-09 23:24: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-08-09 23:24:10 UTC

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

2022-08-09 23:24:10 UTC

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

2022-08-09 23:24:10 UTC

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

2022-08-09 23:24:11 UTC

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

2022-08-09 23:24:11 UTC

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

2022-08-09 23:24:11 UTC

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

2022-08-09 23:24:11 UTC

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

2022-08-09 23:24:11 UTC

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

2022-08-09 23:24:11 UTC

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

Details
Created

2022-08-10 17:17:28 UTC

Size

77 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

12

PG_SHA256

1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

PG_VERSION

12.11


Layers

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

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

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

[#003] sha256:cdb55df40ae2f8c6eddd906cac53924a87c2d5f09551e95b4dd8ee3082755ae1 - 96.74% (74.4 MB)

[#004] sha256:688151fd2f6893ca9d716a5eb53f7de1fae0a19ca55869c99b84b3a40e2171a6 - 0.01% (8.49 KB)

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

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

[#007] sha256:e23d2d7a5958dd3efec77997f39e14732f75c36c238c418f9402201bf0f0a283 - 0.01% (4.59 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-08-10 16:32:48 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 16:32:48 UTC

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

2022-08-10 16:32:49 UTC

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

2022-08-10 17:07:04 UTC

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

2022-08-10 17:07:05 UTC

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

2022-08-10 17:07:05 UTC

/bin/sh -c #(nop) ENV PG_SHA256=1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

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

2022-08-10 17:17:25 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-08-10 17:17:26 UTC

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

2022-08-10 17:17:26 UTC

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

2022-08-10 17:17:27 UTC

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

2022-08-10 17:17:27 UTC

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

2022-08-10 17:17:27 UTC

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

2022-08-10 17:17:27 UTC

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

2022-08-10 17:17:27 UTC

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

2022-08-10 17:17:27 UTC

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

2022-08-10 17:17:28 UTC

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

Details
Created

2022-08-10 20:16:48 UTC

Size

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

12

PG_SHA256

1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

PG_VERSION

12.11


Layers

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

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

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

[#003] sha256:949c5206b2f50af164156e283c446e85801532107446d4aa0ec8517ba2d00a0a - 96.79% (70 MB)

[#004] sha256:215b2ebf664f4ad049ab6974de199335dc18c0246fe7f330542f1a5e01a15832 - 0.01% (8.49 KB)

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

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

[#007] sha256:d3e7f00c1e53caf6caa752ff9964097bab11912dc0b4ae57f1c584c418012ce4 - 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 20:06:33 UTC

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

2022-08-10 20:06:33 UTC

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

2022-08-10 20:06:33 UTC

/bin/sh -c #(nop) ENV PG_SHA256=1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

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

2022-08-10 20:16: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-08-10 20:16:46 UTC

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

2022-08-10 20:16:46 UTC

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

2022-08-10 20:16:47 UTC

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

2022-08-10 20:16:47 UTC

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

2022-08-10 20:16:47 UTC

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

2022-08-10 20:16:47 UTC

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

2022-08-10 20:16:47 UTC

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

2022-08-10 20:16:48 UTC

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

2022-08-10 20:16:48 UTC

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

Details
Created

2022-08-10 02:41:51 UTC

Size

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

12

PG_SHA256

1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

PG_VERSION

12.11


Layers

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

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

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

[#003] sha256:bb6afea2c216d998f7cd58395cdd510d22aceb3d52153ca4191269c6f07a81e7 - 96.66% (75.1 MB)

[#004] sha256:f351846bbfef1f85b17b4087107779a6c326dee639a611244de97c2f019d86f9 - 0.01% (8.49 KB)

[#005] sha256:9d4672894a966a894b43821d594fb18ae0bc3b971658473060b0ebc606aca99a - 0.0% (129 Bytes)

[#006] sha256:34f07340fc42b280df27a28d59fc0d49b28ddfa22df7a9c921fa5dd4d095fac1 - 0.0% (169 Bytes)

[#007] sha256:7c9ce63965a57c0890a88d2c5a3ce1b7d479b3c70f67c52be04214c4401d3cfc - 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-08-10 02:26: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-08-10 02:26:40 UTC

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

2022-08-10 02:26:41 UTC

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

2022-08-10 02:38:32 UTC

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

2022-08-10 02:38:33 UTC

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

2022-08-10 02:38:34 UTC

/bin/sh -c #(nop) ENV PG_SHA256=1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

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

2022-08-10 02:41:42 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-08-10 02:41:43 UTC

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

2022-08-10 02:41:44 UTC

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

2022-08-10 02:41:45 UTC

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

2022-08-10 02:41:46 UTC

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

2022-08-10 02:41:48 UTC

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

2022-08-10 02:41:48 UTC

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

2022-08-10 02:41:49 UTC

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

2022-08-10 02:41:50 UTC

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

2022-08-10 02:41:51 UTC

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

Details
Created

2022-08-09 22:29:34 UTC

Size

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

12

PG_SHA256

1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

PG_VERSION

12.11


Layers

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

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

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

[#003] sha256:433429008fe29ecf301ac0696b0ef399ac445781c9a2b5cd1505fc36076f7c72 - 96.82% (81.8 MB)

[#004] sha256:a1ef7d33c7595f10feac00c83d8923886f2c2b7e6b22188fabfef8502848dcd6 - 0.01% (8.49 KB)

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

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

[#007] sha256:c5e4ac35d9028d17c1c245968df3b4e0d6eaf9213afa3b3819f878c9acc2a158 - 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-08-09 22:10: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-08-09 22:10:32 UTC

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

2022-08-09 22:10:33 UTC

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

2022-08-09 22:25:18 UTC

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

2022-08-09 22:25:18 UTC

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

2022-08-09 22:25:19 UTC

/bin/sh -c #(nop) ENV PG_SHA256=1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

2022-08-09 22:29:26 UTC

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

2022-08-09 22:29:29 UTC

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

2022-08-09 22:29:30 UTC

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

2022-08-09 22:29:31 UTC

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

2022-08-09 22:29:32 UTC

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

2022-08-09 22:29:32 UTC

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

2022-08-09 22:29:33 UTC

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

2022-08-09 22:29:33 UTC

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

2022-08-09 22:29:33 UTC

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

2022-08-09 22:29:34 UTC

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

2022-08-09 22:29:34 UTC

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

Details
Created

2022-08-10 03:00:54 UTC

Size

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

12

PG_SHA256

1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

PG_VERSION

12.11


Layers

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

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

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

[#003] sha256:eb9c5a1da74ef20e88ac66d883ebb6a60a1e75cdaf980de94044f413f9919e14 - 96.88% (77.3 MB)

[#004] sha256:158be2e21be753338336aaad4e3d007061fd7a49abac07b8153840cef49ad6db - 0.01% (8.49 KB)

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

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

[#007] sha256:07127191a724e5c85cadeffd08249e3816fb4a429680a9801c50d6085a6fee26 - 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-08-10 02:38: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

2022-08-10 02:38:12 UTC

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

2022-08-10 02:38:12 UTC

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

2022-08-10 02:57:58 UTC

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

2022-08-10 02:57:58 UTC

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

2022-08-10 02:57:58 UTC

/bin/sh -c #(nop) ENV PG_SHA256=1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302

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

2022-08-10 03:00:52 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-08-10 03:00:52 UTC

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

2022-08-10 03:00:52 UTC

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

2022-08-10 03:00:53 UTC

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

2022-08-10 03:00:53 UTC

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

2022-08-10 03:00:53 UTC

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

2022-08-10 03:00:53 UTC

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

2022-08-10 03:00:53 UTC

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

2022-08-10 03:00:53 UTC

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

2022-08-10 03:00:54 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