Namespace
library
Image / Tag
postgres:15beta4-alpine3.16
Content Digest
sha256:49c65648e070fadf7cf7b7c236837f42a246fb15142dcec99e2789333e1b3612
Details
Created

2022-09-12 23:04:35 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

d84d18ef26a64e76f189b7efb05179920eb0e8ae5d68cdbdbbe966305aee4416

PG_VERSION

15beta4


Layers

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

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

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

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

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

[#005] sha256:1068a9a6441e2bb08ceb6df212f8a5f3664d41c0931a59546d64190331138e17 - 0.0% (129 Bytes)

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

[#007] sha256:51d57eb81aaad31b505843361004c0bb72161efd4151b7f188656a7d7fd75288 - 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 20:53:18 UTC

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

2022-09-12 23:00:30 UTC

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

2022-09-12 23:00:31 UTC

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

2022-09-12 23:04: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 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-12 23:04: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

2022-09-12 23:04:27 UTC

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

2022-09-12 23:04:28 UTC

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

2022-09-12 23:04:29 UTC

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

2022-09-12 23:04:30 UTC

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

2022-09-12 23:04:32 UTC

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

2022-09-12 23:04:32 UTC

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

2022-09-12 23:04:33 UTC

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

2022-09-12 23:04:34 UTC

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

2022-09-12 23:04:35 UTC

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

Details
Created

2022-09-12 22:49:16 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

d84d18ef26a64e76f189b7efb05179920eb0e8ae5d68cdbdbbe966305aee4416

PG_VERSION

15beta4


Layers

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

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

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

[#003] sha256:1950f9c3a969767b204eb4bd4e6b5f1e43ec724df884562373c62119b6709a60 - 96.69% (78.7 MB)

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

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

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

[#007] sha256:838e9dccfaa3d5e11ca204ad905069f45c622b662713dfbe1950a4f7117b9734 - 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:10:37 UTC

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

2022-09-12 22:45:55 UTC

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

2022-09-12 22:45:55 UTC

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

2022-09-12 22:49:14 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-12 22:49:15 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-12 22:49:15 UTC

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

2022-09-12 22:49:15 UTC

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

2022-09-12 22:49:16 UTC

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

2022-09-12 22:49:16 UTC

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

2022-09-12 22:49:16 UTC

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

2022-09-12 22:49:16 UTC

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

2022-09-12 22:49:16 UTC

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

2022-09-12 22:49:16 UTC

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

2022-09-12 22:49:16 UTC

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

Details
Created

2022-09-13 01:19:01 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

d84d18ef26a64e76f189b7efb05179920eb0e8ae5d68cdbdbbe966305aee4416

PG_VERSION

15beta4


Layers

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

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

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

[#003] sha256:7cfaf2fdc8742977f5578c5022be945bc11c824e19b43062ed2a7995cf5c520c - 96.85% (77.1 MB)

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

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

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

[#007] sha256:e8a9092631c31690a50cd4d7ca8bbda9bc87c22a7908f37c2fcb342b8184d6b2 - 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 16:32:49 UTC

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

2022-09-13 01:07:07 UTC

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

2022-09-13 01:07:08 UTC

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

2022-09-13 01:18:58 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-13 01:18:59 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-13 01:18:59 UTC

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

2022-09-13 01:19:00 UTC

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

2022-09-13 01:19:00 UTC

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

2022-09-13 01:19:00 UTC

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

2022-09-13 01:19:00 UTC

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

2022-09-13 01:19:00 UTC

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

2022-09-13 01:19:01 UTC

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

2022-09-13 01:19:01 UTC

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

2022-09-13 01:19:01 UTC

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

Details
Created

2022-09-12 22:21:22 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

d84d18ef26a64e76f189b7efb05179920eb0e8ae5d68cdbdbbe966305aee4416

PG_VERSION

15beta4


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:f36d07182de39b98e593b23723b4a5cb4a9e53348da8e35c6333b19e63c5b871 - 96.9% (72.6 MB)

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

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

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

[#007] sha256:95980eb3b3b6b7a750037126f0c520b3d17c4c11a973b52b95b116e172347cc0 - 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-12 22:14:45 UTC

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

2022-09-12 22:14:45 UTC

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

2022-09-12 22:21:19 UTC

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

2022-09-12 22:21:21 UTC

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

2022-09-12 22:21:21 UTC

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

2022-09-12 22:21:21 UTC

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

2022-09-12 22:21:21 UTC

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

2022-09-12 22:21:21 UTC

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

2022-09-12 22:21:21 UTC

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

2022-09-12 22:21:21 UTC

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

2022-09-12 22:21:22 UTC

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

2022-09-12 22:21:22 UTC

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

Details
Created

2022-09-12 23:29:49 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

d84d18ef26a64e76f189b7efb05179920eb0e8ae5d68cdbdbbe966305aee4416

PG_VERSION

15beta4


Layers

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

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

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

[#003] sha256:170807296ce68ea980120556b586c3e10939fcb788888b47415355ba9273203c - 96.76% (77.7 MB)

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

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

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

[#007] sha256:29fac81c5ad3fcb1d8afd6c1005db6e1d4f6a78c8a792ca32b2a135053beb5bd - 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:26:42 UTC

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

2022-09-12 23:26:11 UTC

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

2022-09-12 23:26:12 UTC

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

2022-09-12 23:29:39 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-12 23:29:40 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-12 23:29:41 UTC

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

2022-09-12 23:29:42 UTC

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

2022-09-12 23:29:43 UTC

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

2022-09-12 23:29:44 UTC

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

2022-09-12 23:29:46 UTC

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

2022-09-12 23:29:46 UTC

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

2022-09-12 23:29:47 UTC

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

2022-09-12 23:29:48 UTC

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

2022-09-12 23:29:49 UTC

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

Details
Created

2022-09-13 02:02:23 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

d84d18ef26a64e76f189b7efb05179920eb0e8ae5d68cdbdbbe966305aee4416

PG_VERSION

15beta4


Layers

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

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

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

[#003] sha256:7c027b9cf956756879dbb537e33ebd4ae6f01885192c0412ae5f5abfae6813ff - 96.92% (84.7 MB)

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

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

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

[#007] sha256:cb71273280097ec23a9319c9a034be657f5b9c601256c08f2bcc16e4ed339b5f - 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:10:34 UTC

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

2022-09-13 01:57:46 UTC

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

2022-09-13 01:57:46 UTC

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

2022-09-13 02:02:14 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-13 02:02: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

2022-09-13 02:02:20 UTC

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

2022-09-13 02:02:20 UTC

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

2022-09-13 02:02:21 UTC

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

2022-09-13 02:02:22 UTC

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

2022-09-13 02:02:22 UTC

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

2022-09-13 02:02:22 UTC

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

2022-09-13 02:02:23 UTC

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

2022-09-13 02:02:23 UTC

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

2022-09-13 02:02:23 UTC

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

Details
Created

2022-09-12 23:02:54 UTC

Size

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

d84d18ef26a64e76f189b7efb05179920eb0e8ae5d68cdbdbbe966305aee4416

PG_VERSION

15beta4


Layers

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

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

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

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

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

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

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

[#007] sha256:2fd8f7467ed5c9cb28ef2420724f6d3abf7e6ccb00e27637c8d1470c2b8c2f15 - 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:38:13 UTC

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

2022-09-12 22:59:31 UTC

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

2022-09-12 22:59:31 UTC

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

2022-09-12 23:02: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-09-12 23:02:51 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-12 23:02:52 UTC

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

2022-09-12 23:02:52 UTC

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

2022-09-12 23:02:53 UTC

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

2022-09-12 23:02:53 UTC

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

2022-09-12 23:02:53 UTC

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

2022-09-12 23:02:53 UTC

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

2022-09-12 23:02:54 UTC

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

2022-09-12 23:02:54 UTC

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

2022-09-12 23:02: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