Tag

library/postgres:10.20-alpine3.15
Content Digest: sha256:c85010c30f7025364b09c41b2bd5404a09d6f6b1f63672ac23f15d4c1ebf81a5
Details
Pull Command

docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:10.20-alpine3.15


Manifests
Details
Content Digest

sha256:3d3ab8426ede7e2c1c7e1d49bb6cf8d171ff0a85d7be65a37fdd3d6819948af3

Created

2022-04-05 04:36:12 UTC

Size

30.4 MB


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

10

PG_SHA256

87de16d59bcfe42fa605c312c59be5e294e8a3e6acb655dd7ad47cbb930a659f

PG_VERSION

10.20


Layers

[#000] sha256:73b28a5955ec7fb46f2cf0434e4901a889f7dda3f8c9ec496300feb256c7eda8 - 8.84% (2.69 MB)

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

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

[#003] sha256:923739823981792e0d9e5c8c3642e2be2f5c267cd787789618b4c4b76e058aa7 - 91.11% (27.7 MB)

[#004] sha256:d45dd7215239d8b034b34f8d9c467941f24ba913419bd6a7dbe0afed9c04e6dd - 0.02% (7.55 KB)

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

[#006] sha256:5b1eea5bccecc5c1fe9afedf4d0fc149577a8ece8761d89ae7a5fd3e27296ce1 - 0.0% (171 Bytes)

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

[#008] sha256:fa1dc96c5950ab63f08b179b45b2ad83df8825261900f4da02dc6bb6b9722439 - 0.0% (121 Bytes)


History
2022-04-04 23:38:25 UTC

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

2022-04-04 23:38:25 UTC

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

2022-04-05 04:18:33 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-04-05 04:18:34 UTC

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

2022-04-05 04:18:35 UTC

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

2022-04-05 04:33:38 UTC

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

2022-04-05 04:33:39 UTC

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

2022-04-05 04:33:40 UTC

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

2022-04-05 04:36:02 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 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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-04-05 04:36:02 UTC

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

2022-04-05 04:36:03 UTC

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

2022-04-05 04:36:04 UTC

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

2022-04-05 04:36:05 UTC

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

2022-04-05 04:36:06 UTC

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

2022-04-05 04:36:08 UTC

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

2022-04-05 04:36:08 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2022-04-05 04:36:09 UTC

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

2022-04-05 04:36:10 UTC

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

2022-04-05 04:36:11 UTC

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

2022-04-05 04:36:12 UTC

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

Details
Content Digest

sha256:c337991e8573163ab313544180bbb8d9a9c6c8b453711a63b1770d148d6417e7

Created

2022-04-05 07:47:23 UTC

Size

29.4 MB


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

10

PG_SHA256

87de16d59bcfe42fa605c312c59be5e294e8a3e6acb655dd7ad47cbb930a659f

PG_VERSION

10.20


Layers

[#000] sha256:df9b9388f04ad6279a7410b85cedfdcb2208c0a003da7ab5613af71079148139 - 9.12% (2.68 MB)

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

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

[#003] sha256:ece0a9704199d5261af96ef9a42a24cb5525f1d900af163f5aefaa057ac33dc9 - 90.83% (26.7 MB)

[#004] sha256:9be4a78cca9acfc2757648dec3ca6fb5a08bac17d09dafcecf1b51b9ebab81c4 - 0.03% (7.55 KB)

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

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

[#007] sha256:43047319a3fa0b5dba725c388ae04d08559b75e60f3e2b052e67c21a906f7022 - 0.02% (4.59 KB)

[#008] sha256:84e021befc2274aa75bf9d9ab51c7b622a75f1167a12885b076cbe87e5fb71df - 0.0% (121 Bytes)


History
2022-04-05 00:19:59 UTC

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

2022-04-05 00:19:59 UTC

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

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

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

2022-04-05 07:24:40 UTC

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

2022-04-05 07:44:18 UTC

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

2022-04-05 07:44:18 UTC

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

2022-04-05 07:44:18 UTC

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

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

2022-04-05 07:47:21 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-04-05 07:47:21 UTC

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

2022-04-05 07:47:21 UTC

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

2022-04-05 07:47:22 UTC

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

2022-04-05 07:47:22 UTC

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

2022-04-05 07:47:22 UTC

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

2022-04-05 07:47:23 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2022-04-05 07:47:23 UTC

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

2022-04-05 07:47:23 UTC

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

2022-04-05 07:47:23 UTC

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

2022-04-05 07:47:23 UTC

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

Details
Content Digest

sha256:b067dd5cd0ababe1f65c4df6256c06965339fd809b61576aea33cdba3a23eb72

Created

2022-04-05 07:09:24 UTC

Size

28.4 MB


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

10

PG_SHA256

87de16d59bcfe42fa605c312c59be5e294e8a3e6acb655dd7ad47cbb930a659f

PG_VERSION

10.20


Layers

[#000] sha256:c319b1fc4ed70b8241a7ce6ac0c4015d354bf5cf8c01eb73c50b6709c0c46e49 - 8.81% (2.5 MB)

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

[#002] sha256:2d6281d8a0ebe004d81faf000876292bc4f792eb730ac75d51aaeca917db6eb0 - 0.0% (148 Bytes)

[#003] sha256:a004e9e8bd2019ffccdc0b292ef1a14be9342fe6565c03d5083cffef79c9e4a1 - 91.14% (25.9 MB)

[#004] sha256:c0586042a9c2d4927178dcedeafc6a3b7f4a8337fbf045dfca050b5d9596febe - 0.03% (7.55 KB)

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

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

[#007] sha256:bfab40afce96000d53eddb1d39ef5b4de162d127bd76d0966c7f0bccae781d73 - 0.02% (4.59 KB)

[#008] sha256:d240ffa25f9af1afbd463a64bba3345eb786d04112c40c3cdfa2e5dd9f6e4988 - 0.0% (121 Bytes)


History
2022-04-04 23:49:42 UTC

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

2022-04-04 23:49:42 UTC

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

2022-04-05 06:44: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

2022-04-05 06:44:13 UTC

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

2022-04-05 06:44:15 UTC

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

2022-04-05 07:05:35 UTC

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

2022-04-05 07:05:36 UTC

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

2022-04-05 07:05:36 UTC

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

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

2022-04-05 07:09:17 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-04-05 07:09:18 UTC

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

2022-04-05 07:09:19 UTC

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

2022-04-05 07:09:20 UTC

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

2022-04-05 07:09:21 UTC

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

2022-04-05 07:09:21 UTC

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

2022-04-05 07:09:23 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2022-04-05 07:09:23 UTC

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

2022-04-05 07:09:23 UTC

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

2022-04-05 07:09:24 UTC

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

2022-04-05 07:09:24 UTC

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

Details
Content Digest

sha256:d34ae50a8e14ef8d65c1a3790c120abf1ba6babcc6cae876c2147c4d78fba37d

Created

2022-04-05 11:05:07 UTC

Size

27.2 MB


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

10

PG_SHA256

87de16d59bcfe42fa605c312c59be5e294e8a3e6acb655dd7ad47cbb930a659f

PG_VERSION

10.20


Layers

[#000] sha256:57fb4b5f1a47c953ca5703f0f81ce14e5d01cf23aa79558b5adb961cc526e320 - 8.5% (2.31 MB)

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

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

[#003] sha256:2cd05d43adf0d7676e062668d2ad01576f781db46f9aeae9c09c9e0559cbe3f2 - 91.45% (24.9 MB)

[#004] sha256:182431c7020ad96bc50dbdfe0a76a2a93e3ea5f52a50dccf081b5152238f4fd6 - 0.03% (7.55 KB)

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

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

[#007] sha256:72b54822e81e9424f951fd5126726fa192889daee057aab61402ea8de06a14d6 - 0.02% (4.59 KB)

[#008] sha256:fc82ddcf3d01d9df99b737a23444ab8167d38e967172394ffaa1209d8c48c351 - 0.0% (121 Bytes)


History
2022-04-04 23:57:34 UTC

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

2022-04-04 23:57:35 UTC

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

2022-04-05 10:40:04 UTC

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

2022-04-05 10:40:05 UTC

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

2022-04-05 10:40:06 UTC

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

2022-04-05 11:01:23 UTC

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

2022-04-05 11:01:23 UTC

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

2022-04-05 11:01:24 UTC

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

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

2022-04-05 11:05:00 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-04-05 11:05:01 UTC

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

2022-04-05 11:05:02 UTC

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

2022-04-05 11:05:03 UTC

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

2022-04-05 11:05:04 UTC

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

2022-04-05 11:05:04 UTC

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

2022-04-05 11:05:06 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2022-04-05 11:05:06 UTC

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

2022-04-05 11:05:07 UTC

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

2022-04-05 11:05:07 UTC

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

2022-04-05 11:05:07 UTC

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

Details
Content Digest

sha256:f4e27cc780e1584cc74eabbbb2763a4c3fa10f667ac26222dab5f99c2053f8d9

Created

2022-04-05 04:38:54 UTC

Size

29.2 MB


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

10

PG_SHA256

87de16d59bcfe42fa605c312c59be5e294e8a3e6acb655dd7ad47cbb930a659f

PG_VERSION

10.20


Layers

[#000] sha256:9981e73032c8833e387a8f96986e560edbed12c38119e0edb0439c9c2234eac9 - 8.89% (2.59 MB)

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

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

[#003] sha256:d451fc9e2823dda8c4c847d98634dbe2cd99952a521562201d87c98d231857bb - 91.07% (26.5 MB)

[#004] sha256:bee7111177ac0dd2c828ffca1b8ddb112deb72cbcf01a793374b3e495793a898 - 0.03% (7.55 KB)

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

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

[#007] sha256:823100f7bda8a488f413fcd22ec5bd7ce1673e366b2396eb149c99584a2f37e2 - 0.02% (4.59 KB)

[#008] sha256:0604099190c6563260102713e309ae58ff25de9bf9d78ef42d94d3be468589a9 - 0.0% (120 Bytes)


History
2022-04-04 23:39:31 UTC

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

2022-04-04 23:39:31 UTC

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

2022-04-05 04:22:00 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-04-05 04:22:01 UTC

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

2022-04-05 04:22:02 UTC

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

2022-04-05 04:36:32 UTC

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

2022-04-05 04:36:33 UTC

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

2022-04-05 04:36:34 UTC

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

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

2022-04-05 04:38: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-04-05 04:38:45 UTC

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

2022-04-05 04:38:46 UTC

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

2022-04-05 04:38:47 UTC

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

2022-04-05 04:38:48 UTC

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

2022-04-05 04:38:50 UTC

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

2022-04-05 04:38:50 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2022-04-05 04:38:51 UTC

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

2022-04-05 04:38:52 UTC

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

2022-04-05 04:38:53 UTC

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

2022-04-05 04:38:54 UTC

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

Details
Content Digest

sha256:6c6643539e24fc716264f5e022821b51f1f42fda31069c0ec01903237f2545b8

Created

2022-04-05 10:43:22 UTC

Size

30.8 MB


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

10

PG_SHA256

87de16d59bcfe42fa605c312c59be5e294e8a3e6acb655dd7ad47cbb930a659f

PG_VERSION

10.20


Layers

[#000] sha256:1877acf2d48ed8bcb5bd9756a95aca0c077457be7cf4fcef25807f4e9be88db1 - 8.71% (2.68 MB)

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

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

[#003] sha256:0e563e01b7dbdbdfa4837f54ff17c18d4c01e80d326d76d40edda9a9ffd56b8b - 91.25% (28.1 MB)

[#004] sha256:9aa9de31c2be08ad5f79c12afe1a63e9a98036fb3537589d61396484bd11deb6 - 0.02% (7.54 KB)

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

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

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

[#008] sha256:c40f30b5229a657ee5d0f52986c239613a724f30ed7d119b93d035f4dbad6611 - 0.0% (118 Bytes)


History
2022-04-05 00:23:30 UTC

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

2022-04-05 00:23:32 UTC

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

2022-04-05 10:15:26 UTC

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

2022-04-05 10:15:31 UTC

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

2022-04-05 10:15:41 UTC

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

2022-04-05 10:39:29 UTC

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

2022-04-05 10:39:30 UTC

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

2022-04-05 10:39:32 UTC

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

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

2022-04-05 10:42: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-04-05 10:42:56 UTC

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

2022-04-05 10:42:59 UTC

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

2022-04-05 10:43:04 UTC

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

2022-04-05 10:43:07 UTC

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

2022-04-05 10:43:07 UTC

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

2022-04-05 10:43:13 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2022-04-05 10:43:16 UTC

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

2022-04-05 10:43:18 UTC

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

2022-04-05 10:43:19 UTC

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

2022-04-05 10:43:22 UTC

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

Details
Content Digest

sha256:575a29a9facb92541a34bcf72eb3bc7b83599220efe4741665e908f973c12ad3

Created

2022-04-05 07:10:12 UTC

Size

29.3 MB


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

10

PG_SHA256

87de16d59bcfe42fa605c312c59be5e294e8a3e6acb655dd7ad47cbb930a659f

PG_VERSION

10.20


Layers

[#000] sha256:a27b630f446c3da376a30cf610e4bfa6847f8b87c83702c29e72b986f4e52d28 - 8.46% (2.48 MB)

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

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

[#003] sha256:b1f9f70f9bdaf6cdf09521337e23534da94c9d20246f5fc7ebd4bc38390eddd3 - 91.49% (26.8 MB)

[#004] sha256:3a4402516a2d335697c55bc8d7dbd487e8ecffe675395782c09dcfe290c13863 - 0.03% (7.55 KB)

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

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

[#007] sha256:e1bc02335693d01011b492eaa449604afd50c09d1dedccdd58111cfe5c310dd2 - 0.02% (4.59 KB)

[#008] sha256:66b1f2af9b3647947f739d4d7da0a3b1dcd8dc68f59fb2dc47492fcc378badc6 - 0.0% (121 Bytes)


History
2022-04-04 23:41:39 UTC

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

2022-04-04 23:41:39 UTC

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

2022-04-05 06:55:28 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-04-05 06:55:28 UTC

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

2022-04-05 06:55:29 UTC

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

2022-04-05 07:08:15 UTC

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

2022-04-05 07:08:15 UTC

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

2022-04-05 07:08:15 UTC

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

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

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

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

2022-04-05 07:10:10 UTC

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

2022-04-05 07:10:10 UTC

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

2022-04-05 07:10:11 UTC

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

2022-04-05 07:10:11 UTC

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

2022-04-05 07:10:11 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2022-04-05 07:10:11 UTC

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

2022-04-05 07:10:11 UTC

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

2022-04-05 07:10:12 UTC

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

2022-04-05 07:10:12 UTC

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