Namespace
library
Image / Tag
postgres:11.13-alpine
Content Digest
sha256:67cff2d866a237c54a21f2038e15e61cd257b7dde465436e231bb91e31ac9f79
Details
Created

2021-10-26 21:57:26 UTC

Size

75 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

11

PG_SHA256

a0c3689ff7f565288002cbc138779d5121d74831a5e8341aea7aa86e99b6bc48

PG_VERSION

11.13


Layers

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

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

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

[#003] sha256:6610e39e280a94dab7c830d08bbc310be0bae552e458b1325893e8998a173c7f - 96.39% (72.3 MB)

[#004] sha256:e6b9808d6c2dda07130fc6d3c67453ff8a40e0a970b1504f9eb88d5137672002 - 0.01% (7.8 KB)

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

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

[#007] sha256:d42d8d8ab50a14b16b077404cfdcbf24f24e80ea2165e978c6948ca4251f4804 - 0.01% (4.61 KB)


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:21:08 UTC

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

2021-08-27 22:21:09 UTC

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

2021-08-27 22:21:09 UTC

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

2021-08-27 22:28:22 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm11-dev clang g++ make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; 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:28:24 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:28:26 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:28:26 UTC

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

2021-08-27 22:28:28 UTC

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

2021-08-27 22:28:29 UTC

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

2021-10-26 21:57:25 UTC

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

2021-10-26 21:57:26 UTC

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

2021-10-26 21:57:26 UTC

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

2021-10-26 21:57:26 UTC

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

2021-10-26 21:57:26 UTC

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

Details
Created

2021-10-26 23:25:40 UTC

Size

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

11

PG_SHA256

a0c3689ff7f565288002cbc138779d5121d74831a5e8341aea7aa86e99b6bc48

PG_VERSION

11.13


Layers

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

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

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

[#003] sha256:351ed8634988c48d42af269ca4871a728e40fb28a7d574b6db360a229b420b58 - 96.18% (67.9 MB)

[#004] sha256:18d059d16088f15a90f55346106a77631b238eeea38ac70b021647d57ae631a8 - 0.01% (7.8 KB)

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

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

[#007] sha256:ffd745cf5ff58b115272ff22d5361f032f6f2ddf89d87102d957af42b33c1f94 - 0.01% (4.61 KB)


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:09:50 UTC

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

2021-08-27 23:09:51 UTC

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

2021-08-27 23:09:51 UTC

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

2021-08-27 23:16:52 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 llvm11-dev clang g++ make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; 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:16: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-08-27 23:16: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:16:54 UTC

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

2021-08-27 23:16:55 UTC

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

2021-08-27 23:16:55 UTC

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

2021-10-26 23:25:39 UTC

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

2021-10-26 23:25:40 UTC

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

2021-10-26 23:25:40 UTC

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

2021-10-26 23:25:40 UTC

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

2021-10-26 23:25:40 UTC

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

Details
Created

2021-10-26 23:26:02 UTC

Size

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

11

PG_SHA256

a0c3689ff7f565288002cbc138779d5121d74831a5e8341aea7aa86e99b6bc48

PG_VERSION

11.13


Layers

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

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

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

[#003] sha256:909c2c58694a8694d24dfbce3d1c0e96e877150a6ab43e5cf7b7bf2b67a35e0f - 96.36% (66.8 MB)

[#004] sha256:540339d197f295c6d77182c4232dcdc0f8dbff92de893df139b8e0f4f61de86a - 0.01% (7.81 KB)

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

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

[#007] sha256:99b5c5e2964362842741c85dcc42b89ecaa41982202b06aae667c6b1d94e5440 - 0.01% (4.61 KB)


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:21:25 UTC

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

2021-08-27 22:21:26 UTC

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

2021-08-27 22:21:26 UTC

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

2021-08-27 22:26: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 llvm11-dev clang g++ make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; 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:26: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:26: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:26:05 UTC

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

2021-08-27 22:26:07 UTC

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

2021-08-27 22:26:07 UTC

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

2021-10-26 23:26:00 UTC

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

2021-10-26 23:26:00 UTC

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

2021-10-26 23:26:01 UTC

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

2021-10-26 23:26:01 UTC

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

2021-10-26 23:26:02 UTC

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

Details
Created

2021-10-26 23:27:37 UTC

Size

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

11

PG_SHA256

a0c3689ff7f565288002cbc138779d5121d74831a5e8341aea7aa86e99b6bc48

PG_VERSION

11.13


Layers

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

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

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

[#003] sha256:dd7232c782fbe2ecb82d29f24b8d0266eaa77c862b6cdcb82f1e80e57c9da460 - 96.43% (62.9 MB)

[#004] sha256:3956a5f0a4c193904618eeb792d98b531bc6628c251189bb9b19d54b03446f06 - 0.01% (7.8 KB)

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

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

[#007] sha256:8f018f87c97fcb9532570d1053dde5d05f83432d9109f5996715f3f76e0393c6 - 0.01% (4.61 KB)


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:23:55 UTC

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

2021-08-28 00:23:55 UTC

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

2021-08-28 00:23:56 UTC

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

2021-08-28 00:28:18 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm11-dev clang g++ make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; 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:28: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

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

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

2021-08-28 00:28:25 UTC

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

2021-08-28 00:28:25 UTC

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

2021-10-26 23:27:35 UTC

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

2021-10-26 23:27:36 UTC

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

2021-10-26 23:27:36 UTC

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

2021-10-26 23:27:37 UTC

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

2021-10-26 23:27:37 UTC

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

Details
Created

2021-10-26 21:44:46 UTC

Size

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

11

PG_SHA256

a0c3689ff7f565288002cbc138779d5121d74831a5e8341aea7aa86e99b6bc48

PG_VERSION

11.13


Layers

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

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

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

[#003] sha256:3abef9e368916821694bb420cf62633645f2c96098c76c44c0546603c31b07a4 - 96.27% (67 MB)

[#004] sha256:40fcfa8652619f248a9bf0d4bfdd1cb99fd1be56b59bceca40ff8fbcb80f14d9 - 0.01% (7.8 KB)

[#005] sha256:3c11954f3eeee8ac856decd5855ac6f27f94b69dd6031644314ffef9adf27423 - 0.0% (128 Bytes)

[#006] sha256:81d85474d26b7b3eb1a99458c4d00ffce3a69ec6d15361060630076fb4ce81a9 - 0.0% (171 Bytes)

[#007] sha256:63345aa73eb366736b87bb2aefc81d43c7ccd040c1423fcca49da3a5579d7ca5 - 0.01% (4.61 KB)


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:05:37 UTC

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

2021-10-18 23:05:38 UTC

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

2021-10-18 23:05:39 UTC

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

2021-10-18 23:09:00 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 llvm11-dev clang g++ make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; 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:09:01 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:09:02 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:09:03 UTC

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

2021-10-18 23:09:04 UTC

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

2021-10-18 23:09:05 UTC

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

2021-10-26 21:44:43 UTC

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

2021-10-26 21:44:43 UTC

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

2021-10-26 21:44:44 UTC

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

2021-10-26 21:44:45 UTC

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

2021-10-26 21:44:46 UTC

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

Details
Created

2021-10-26 23:26:41 UTC

Size

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

11

PG_SHA256

a0c3689ff7f565288002cbc138779d5121d74831a5e8341aea7aa86e99b6bc48

PG_VERSION

11.13


Layers

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

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

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

[#003] sha256:aee206084dbeacfb8fc25e4cb8324660cd0fb21554f1754ae257963af429fdfa - 96.42% (72.6 MB)

[#004] sha256:c7628128fdb8b5a96601aeac1a719dba86267e0a896c952adad891603b2068b0 - 0.01% (7.8 KB)

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

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

[#007] sha256:130742b39c486c53beeb9b4581d29a74d41abf5ca6da1c0550cab8f362d2924b - 0.01% (4.61 KB)


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:01:25 UTC

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

2021-08-27 22:01:28 UTC

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

2021-08-27 22:01:30 UTC

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

2021-08-27 22:05: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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm11-dev clang g++ make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; 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:05: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

2021-08-27 22:05:50 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:05:55 UTC

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

2021-08-27 22:06:03 UTC

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

2021-08-27 22:06:07 UTC

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

2021-10-26 23:26:32 UTC

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

2021-10-26 23:26:34 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:38 UTC

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

2021-10-26 23:26:41 UTC

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

Details
Created

2021-10-26 22:01:09 UTC

Size

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

11

PG_SHA256

a0c3689ff7f565288002cbc138779d5121d74831a5e8341aea7aa86e99b6bc48

PG_VERSION

11.13


Layers

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

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

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

[#003] sha256:36ea6993305a2ba75ef57de145de7349c52c36c55ab8d2e65f80a8e74ab35a4f - 96.52% (69.2 MB)

[#004] sha256:d6583c8c031f0152f14b95fb4dfb49055ddb930667af14c630e9802443f707d2 - 0.01% (7.81 KB)

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

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

[#007] sha256:d59c5c2c8c6b65da4f4e360338aeb0af8612568d2ec854f4f86db2808375dce4 - 0.01% (4.61 KB)


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:01:59 UTC

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

2021-08-28 01:01:59 UTC

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

2021-08-28 01:02:00 UTC

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

2021-08-28 01:07:57 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 llvm11-dev clang g++ make openssl-dev perl-utils perl-ipc-run 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-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; 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:08:07 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:08:09 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:08:10 UTC

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

2021-08-28 01:08:12 UTC

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

2021-08-28 01:08:12 UTC

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

2021-10-26 22:01:09 UTC

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

2021-10-26 22:01:09 UTC

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

2021-10-26 22:01:09 UTC

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

2021-10-26 22:01:09 UTC

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

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