Namespace
library
Image / Tag
postgres:9.6.23-alpine
Content Digest
sha256:8c3455a1c953c7c4fbcedca28a0c9c665cb6175934148335b3b86df5d106b9b5
Details
Created

2021-10-26 21:58:15 UTC

Size

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

9.6

PG_SHA256

a849f798401ab8c6dfa653ebbcd853b43f2200b4e3bc1ea3cb5bec9a691947b9

PG_VERSION

9.6.23


Layers

[#000] sha256:b11ae9fc5d8a106cfed3a6f6c75e5b5b5797c566fac4411622b4055df6541286 - 18.54% (2.69 MB)

[#001] sha256:b976c7cea63cd0c42b035f2167b42952bfe4b4c5c26d5c1828e46ccf08b16dd9 - 0.01% (1.25 KB)

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

[#003] sha256:9db957cca0441324a7174feac412d72e70fea9e77d88ebbde51aa7f909af8230 - 81.37% (11.8 MB)

[#004] sha256:313d8c3f98400aabc32067d6c60947f7c0f31291382b4fa8989b082501ea57e7 - 0.05% (7.35 KB)

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

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

[#007] sha256:32a6f325a354a341aae463597a76aaf05ecaeaadc0a0f5deca315f695cc1d1c0 - 0.03% (4.62 KB)

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


History
2021-08-27 17:38:29 UTC

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

2021-08-27 17:38:30 UTC

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

2021-08-27 21:55:05 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

2021-08-27 21:55:05 UTC

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

2021-08-27 21:55:06 UTC

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

2021-08-27 22:35:20 UTC

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

2021-08-27 22:35:20 UTC

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

2021-08-27 22:35:20 UTC

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

2021-08-27 22:39:03 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-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-openssl --with-libxml --with-libxslt ; 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 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-08-27 22:39:04 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

2021-08-27 22:39:04 UTC

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

2021-08-27 22:39:05 UTC

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

2021-08-27 22:39:06 UTC

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

2021-08-27 22:39:06 UTC

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

2021-10-26 21:58:13 UTC

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

2021-10-26 21:58:14 UTC

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

2021-10-26 21:58:15 UTC

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

2021-10-26 21:58:15 UTC

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

2021-10-26 21:58:15 UTC

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

2021-10-26 21:58:15 UTC

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

Details
Created

2021-10-26 23:26:19 UTC

Size

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

9.6

PG_SHA256

a849f798401ab8c6dfa653ebbcd853b43f2200b4e3bc1ea3cb5bec9a691947b9

PG_VERSION

9.6.23


Layers

[#000] sha256:a0d0a0d46f8b52473982a3c466318f479767577551a53ffc9074c9fa7035982e - 19.27% (2.68 MB)

[#001] sha256:5034a66b99e67db609bf6b4f82bea915e39a42e6f03d11889f7406b4de9e99da - 0.01% (1.25 KB)

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

[#003] sha256:9b397b6bf6f92e78f1ebfa89f17c00dc1f1925a86095c9db697b0f0ffcf5bd56 - 80.63% (11.2 MB)

[#004] sha256:d6e501a2f58bac30cbbf4467a4dfb4326d4642f8e17c111e7aa9132419c453cb - 0.05% (7.35 KB)

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

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

[#007] sha256:a1c1a704ad6addf8461c0deef439451a49b6a911ab9efc473fccc92c3c7b18ac - 0.03% (4.61 KB)

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


History
2021-08-27 17:19:45 UTC

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

2021-08-27 17:19:45 UTC

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

2021-08-27 22:48:02 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

2021-08-27 22:48:02 UTC

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

2021-08-27 22:48:03 UTC

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

2021-08-27 23:22:27 UTC

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

2021-08-27 23:22:27 UTC

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

2021-08-27 23:22:27 UTC

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

2021-08-27 23:26:50 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-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-openssl --with-libxml --with-libxslt ; 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 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-08-27 23:26: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

2021-08-27 23:26:54 UTC

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

2021-08-27 23:26:54 UTC

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

2021-08-27 23:26:56 UTC

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

2021-08-27 23:26:57 UTC

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

2021-10-26 23:26:16 UTC

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

2021-10-26 23:26:17 UTC

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

2021-10-26 23:26:18 UTC

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

2021-10-26 23:26:18 UTC

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

2021-10-26 23:26:18 UTC

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

2021-10-26 23:26:19 UTC

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

Details
Created

2021-10-26 23:26:37 UTC

Size

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

9.6

PG_SHA256

a849f798401ab8c6dfa653ebbcd853b43f2200b4e3bc1ea3cb5bec9a691947b9

PG_VERSION

9.6.23


Layers

[#000] sha256:2e78c0f86ba9a1fed30df20cb48c9cc73e9626399f12749d36b892ff99c0ecf5 - 18.76% (2.51 MB)

[#001] sha256:8a768a51394fb89d634086ed31a7649653823611d054a16603974b9148da6f5b - 0.01% (1.25 KB)

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

[#003] sha256:5df825c409ea6ff99e6f7f56218f68b5a9f6c57042e5f77ee0b1d3439a66d901 - 81.14% (10.8 MB)

[#004] sha256:b27225dc81808f7c48796360467716e281386947da83255313e577d97acf9715 - 0.05% (7.35 KB)

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

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

[#007] sha256:37103f83c305e720626f9c4028613a4c139073151ae16b5674bf8b992100daef - 0.03% (4.62 KB)

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


History
2021-08-27 17:49:29 UTC

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

2021-08-27 17:49:30 UTC

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

2021-08-27 22:04: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

2021-08-27 22:04:29 UTC

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

2021-08-27 22:04:33 UTC

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

2021-08-27 22:30:26 UTC

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

2021-08-27 22:30:27 UTC

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

2021-08-27 22:30:27 UTC

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

2021-08-27 22:34:01 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-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-openssl --with-libxml --with-libxslt ; 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 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-08-27 22:34:03 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

2021-08-27 22:34:04 UTC

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

2021-08-27 22:34:05 UTC

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

2021-08-27 22:34:07 UTC

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

2021-08-27 22:34:07 UTC

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

2021-10-26 23:26:33 UTC

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

2021-10-26 23:26:35 UTC

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

2021-10-26 23:26:35 UTC

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

2021-10-26 23:26:36 UTC

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

2021-10-26 23:26:36 UTC

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

2021-10-26 23:26:37 UTC

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

Details
Created

2021-10-26 23:29:20 UTC

Size

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

9.6

PG_SHA256

a849f798401ab8c6dfa653ebbcd853b43f2200b4e3bc1ea3cb5bec9a691947b9

PG_VERSION

9.6.23


Layers

[#000] sha256:a14774a5a62e0f454febaec7cb603e18a6a8e25ef9da4a4da85b155bdd5e5a7a - 18.5% (2.32 MB)

[#001] sha256:644c3f2a8fe3f377a2e021c2c2788a12425c35f5560621956858f68cba63d274 - 0.01% (1.25 KB)

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

[#003] sha256:5edb036b268a2c8542a06c9d1951512578aa2074057c3c5cc9c87e176155b306 - 81.39% (10.2 MB)

[#004] sha256:db31aa7f093f7db4f193b8902674fc2faf39fadae43a3439167f43a93cfbedfa - 0.06% (7.36 KB)

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

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

[#007] sha256:7a71047c59165203b23499afd30488777c266e9deed1025c405028e773770ef6 - 0.04% (4.61 KB)

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


History
2021-08-27 17:57:31 UTC

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

2021-08-27 17:57:32 UTC

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

2021-08-28 00:08:07 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

2021-08-28 00:08:07 UTC

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

2021-08-28 00:08:09 UTC

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

2021-08-28 00:33:31 UTC

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

2021-08-28 00:33:32 UTC

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

2021-08-28 00:33:32 UTC

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

2021-08-28 00:36: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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-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-openssl --with-libxml --with-libxslt ; 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 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-08-28 00:36:50 UTC

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

2021-08-28 00:36:52 UTC

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

2021-08-28 00:36:52 UTC

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

2021-08-28 00:36:54 UTC

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

2021-08-28 00:36:54 UTC

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

2021-10-26 23:29:17 UTC

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

2021-10-26 23:29:18 UTC

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

2021-10-26 23:29:19 UTC

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

2021-10-26 23:29:19 UTC

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

2021-10-26 23:29:20 UTC

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

2021-10-26 23:29:20 UTC

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

Details
Created

2021-10-26 21:45:52 UTC

Size

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

9.6

PG_SHA256

a849f798401ab8c6dfa653ebbcd853b43f2200b4e3bc1ea3cb5bec9a691947b9

PG_VERSION

9.6.23


Layers

[#000] sha256:552d1f2373af9bfe12033568ebbfb0ccbb0de11279f9a415a29207e264d7f4d9 - 18.93% (2.59 MB)

[#001] sha256:4e3db06fe700d088e7f6f13eb2fcc4de922c6ed1ee62e549e302ca7b0fb6be60 - 0.01% (1.23 KB)

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

[#003] sha256:715c76a63bfc34067e1fb7b4de724a14929a708222b3e1e94a428c56232c7555 - 80.97% (11.1 MB)

[#004] sha256:e07a4d3b0b81ec215287cbad0c0e43db3e4e8e93c63e04def73e8410f14fd928 - 0.05% (7.35 KB)

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

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

[#007] sha256:b546be083df53a1897717007f2c8f9620fc17d158ebb9a69ce9414e5c1fc759b - 0.03% (4.61 KB)

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


History
2021-08-27 17:39:33 UTC

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

2021-08-27 17:39:33 UTC

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

2021-10-18 22:38:21 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

2021-10-18 22:38:22 UTC

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

2021-10-18 22:38:23 UTC

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

2021-10-18 23:38:54 UTC

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

2021-10-18 23:38:55 UTC

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

2021-10-18 23:38:56 UTC

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

2021-10-18 23:41:53 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-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-openssl --with-libxml --with-libxslt ; 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 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-10-18 23:41:53 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

2021-10-18 23:41:54 UTC

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

2021-10-18 23:41:55 UTC

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

2021-10-18 23:41:56 UTC

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

2021-10-18 23:41:57 UTC

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

2021-10-26 21:45:48 UTC

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

2021-10-26 21:45:48 UTC

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

2021-10-26 21:45:49 UTC

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

2021-10-26 21:45:50 UTC

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

2021-10-26 21:45:51 UTC

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

2021-10-26 21:45:52 UTC

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

Details
Created

2021-10-26 23:28:14 UTC

Size

15 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

9.6

PG_SHA256

a849f798401ab8c6dfa653ebbcd853b43f2200b4e3bc1ea3cb5bec9a691947b9

PG_VERSION

9.6.23


Layers

[#000] sha256:63da8ca98f7b4b94381aed56862a60aecf355d9428b9aeb7c61d5bd017100c18 - 17.9% (2.68 MB)

[#001] sha256:51b84363c8c0f2373e8b665451df1c6a11a9415fd4f1c773e8ce7aaafa836248 - 0.01% (1.26 KB)

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

[#003] sha256:ac44b85d036152bf5bc4a2319f079e3e498525ca1ea5a911e6a95a0545f5aa74 - 82.01% (12.3 MB)

[#004] sha256:29b639d84f68e9eaba981dd7566cd6e024eb6bb05ba8d4be5b3b85681172a374 - 0.05% (7.35 KB)

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

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

[#007] sha256:373ab81c82df1037c8a3d7fc163615a55dfbea6d98515ddc8f8390aee93f1663 - 0.03% (4.62 KB)

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


History
2021-08-27 19:39:54 UTC

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

2021-08-27 19:39:59 UTC

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

2021-08-27 21:43:37 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

2021-08-27 21:43:39 UTC

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

2021-08-27 21:43:48 UTC

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

2021-08-27 22:11:14 UTC

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

2021-08-27 22:11:17 UTC

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

2021-08-27 22:11:23 UTC

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

2021-08-27 22:14: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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-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-openssl --with-libxml --with-libxslt ; 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 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-08-27 22:14:18 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

2021-08-27 22:14:29 UTC

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

2021-08-27 22:14:37 UTC

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

2021-08-27 22:15:01 UTC

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

2021-08-27 22:15:08 UTC

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

2021-10-26 23:28:03 UTC

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

2021-10-26 23:28:06 UTC

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

2021-10-26 23:28:09 UTC

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

2021-10-26 23:28:10 UTC

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

2021-10-26 23:28:12 UTC

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

2021-10-26 23:28:14 UTC

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

Details
Created

2021-10-26 22:01:40 UTC

Size

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

9.6

PG_SHA256

a849f798401ab8c6dfa653ebbcd853b43f2200b4e3bc1ea3cb5bec9a691947b9

PG_VERSION

9.6.23


Layers

[#000] sha256:da14cb6b6dc946dbb2d84386bcaca84e2d46f650767cd11bdb3331ec9d623988 - 18.25% (2.48 MB)

[#001] sha256:31510cc6ab297041382a23f3ee5b4a7cf8e1a650f86836260bfcb82cbd35f7eb - 0.01% (1.25 KB)

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

[#003] sha256:52343b51b3b3c8f421dd28204f2d15b955553d58c4fd814df8dd9d77aa127fbd - 81.66% (11.1 MB)

[#004] sha256:31a2de4be15106e581a70f2949ecbd0dbfa7dc5a06f661332d1d87c74c41c674 - 0.05% (7.35 KB)

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

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

[#007] sha256:9ee5472291e1f6324b6983f4d1780d294349205eaee51e94d0bb6938d63ecaa1 - 0.03% (4.62 KB)

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


History
2021-08-27 17:41:29 UTC

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

2021-08-27 17:41:30 UTC

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

2021-08-28 00:49:31 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

2021-08-28 00:49:32 UTC

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

2021-08-28 00:49:32 UTC

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

2021-08-28 01:13:13 UTC

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

2021-08-28 01:13:13 UTC

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

2021-08-28 01:13:14 UTC

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

2021-08-28 01:16:59 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-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-openssl --with-libxml --with-libxslt ; 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 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-08-28 01:17: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

2021-08-28 01:17:04 UTC

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

2021-08-28 01:17:04 UTC

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

2021-08-28 01:17:06 UTC

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

2021-08-28 01:17:06 UTC

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

2021-10-26 22:01:39 UTC

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

2021-10-26 22:01:39 UTC

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

2021-10-26 22:01:39 UTC

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

2021-10-26 22:01:39 UTC

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

2021-10-26 22:01:40 UTC

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

2021-10-26 22:01:40 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