Namespace
library
Image / Tag
postgres:14rc1-alpine
Content Digest
sha256:bc9f311be96786db94457efd89be66c0dc5bdc95414e9a2d4d8ce6fff13292a3
Details
Created

2021-09-23 23:19:26 UTC

Size

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

14

PG_SHA256

586a816cb7811985f474eda0d4926fabd2378f0f6d5659d12fba421d38a07616

PG_VERSION

14rc1


Layers

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

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

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

[#003] sha256:22227e5fb47f4df8c176739fb3c3304a62cd318f91708854dc70406793dc85e0 - 96.54% (75.6 MB)

[#004] sha256:672d485a47334b9556f21a10af89a01b50e4c78df4bfc6c6bfd912f18ffb141f - 0.01% (8.99 KB)

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

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

[#007] sha256:9ae6d596b78151f01e43405159ca28dc1c7a7e4b8adf2971cea12afeecf823d8 - 0.01% (4.3 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 21:55:06 UTC

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

2021-09-23 23:12:58 UTC

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

2021-09-23 23:12:58 UTC

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

2021-09-23 23:19:21 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 lz4-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 --with-lz4 ; 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-09-23 23:19:22 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-09-23 23:19:23 UTC

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

2021-09-23 23:19:23 UTC

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

2021-09-23 23:19:24 UTC

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

2021-09-23 23:19:24 UTC

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

2021-09-23 23:19:25 UTC

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

2021-09-23 23:19:25 UTC

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

2021-09-23 23:19:25 UTC

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

2021-09-23 23:19:25 UTC

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

2021-09-23 23:19:26 UTC

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

Details
Created

2021-09-23 23:56:03 UTC

Size

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

14

PG_SHA256

586a816cb7811985f474eda0d4926fabd2378f0f6d5659d12fba421d38a07616

PG_VERSION

14rc1


Layers

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

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

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

[#003] sha256:e6c79b0bf8c1639cb6c4065897d78b8e1e831d2169b4772653042529e26e4d96 - 96.34% (71 MB)

[#004] sha256:2010d088b52d37cec7d2fd31266ce947691811c917e3dc50e6ba2a44cd9e1a07 - 0.01% (8.99 KB)

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

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

[#007] sha256:84cbd7f80baf38ba6fb27a15dafe704ac43d3a9721923435ff272d11259ca773 - 0.01% (4.3 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 22:48:03 UTC

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

2021-09-23 23:49:39 UTC

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

2021-09-23 23:49:39 UTC

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

2021-09-23 23:55: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 llvm11-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev lz4-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 --with-lz4 ; 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-09-23 23:56: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

2021-09-23 23:56:01 UTC

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

2021-09-23 23:56:01 UTC

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

2021-09-23 23:56:02 UTC

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

2021-09-23 23:56:02 UTC

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

2021-09-23 23:56:02 UTC

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

2021-09-23 23:56:02 UTC

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

2021-09-23 23:56:03 UTC

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

2021-09-23 23:56:03 UTC

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

2021-09-23 23:56:03 UTC

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

Details
Created

2021-09-23 23:36:53 UTC

Size

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

14

PG_SHA256

586a816cb7811985f474eda0d4926fabd2378f0f6d5659d12fba421d38a07616

PG_VERSION

14rc1


Layers

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

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

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

[#003] sha256:28bfc37c7dd2c5fdecf7ea4e78da6d192b2ea683190f9161388a7ce4d3cf8479 - 96.52% (69.8 MB)

[#004] sha256:66ab6673c5d2e5e848aaa7105be836d0bdfd0e7cd6efb0a8257b9617b9734a33 - 0.01% (8.99 KB)

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

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

[#007] sha256:6762cf3cad5e41ec457bfa640b545ed666c95e6261dc80274dcd2b34afc2cc28 - 0.01% (4.3 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:04:34 UTC

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

2021-09-23 23:31:50 UTC

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

2021-09-23 23:31:51 UTC

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

2021-09-23 23:36: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 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 lz4-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 --with-lz4 ; 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-09-23 23:36:46 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-09-23 23:36:48 UTC

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

2021-09-23 23:36:49 UTC

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

2021-09-23 23:36:51 UTC

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

2021-09-23 23:36:51 UTC

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

2021-09-23 23:36:52 UTC

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

2021-09-23 23:36:52 UTC

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

2021-09-23 23:36:52 UTC

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

2021-09-23 23:36:53 UTC

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

2021-09-23 23:36:53 UTC

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

Details
Created

2021-09-24 01:27:31 UTC

Size

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

14

PG_SHA256

586a816cb7811985f474eda0d4926fabd2378f0f6d5659d12fba421d38a07616

PG_VERSION

14rc1


Layers

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

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

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

[#003] sha256:daa96d8477a738240ba70773ba43917d6c36f1a6ad4cedafefbdb8873e398a3f - 96.42% (70.1 MB)

[#004] sha256:9b64f6146c486d4823bb1270051661a3426a09986c3fe9ea6132158bba5fd9f8 - 0.01% (8.98 KB)

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

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

[#007] sha256:27e03163aa661dba041442bc2668ab2025fe2caebad5228a4a6e6f0753975b6c - 0.01% (4.3 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-08-28 00:44: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-08-28 00:44:21 UTC

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

2021-08-28 00:44:22 UTC

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

2021-08-28 00:44:22 UTC

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

2021-09-24 01:22:55 UTC

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

2021-09-24 01:22:56 UTC

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

2021-09-24 01:27:27 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 lz4-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 --with-lz4 ; 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-09-24 01:27:29 UTC

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

2021-09-24 01:27:29 UTC

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

2021-09-24 01:27:29 UTC

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

2021-09-24 01:27:30 UTC

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

2021-09-24 01:27:30 UTC

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

2021-09-24 01:27:30 UTC

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

2021-09-24 01:27:31 UTC

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

2021-09-24 01:27:31 UTC

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

2021-09-24 01:27:31 UTC

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

2021-09-24 01:27:31 UTC

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

Details
Created

2021-09-24 06:54:20 UTC

Size

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

14

PG_SHA256

586a816cb7811985f474eda0d4926fabd2378f0f6d5659d12fba421d38a07616

PG_VERSION

14rc1


Layers

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

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

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

[#003] sha256:d87d8d422ab251a9396956aa6d524feff46dafb3b3ef8d1233e476d8c70f9618 - 96.57% (75.8 MB)

[#004] sha256:1ca34b9544a81ed813cc66415709cf8520f076ce95a43b54f6b2c2c0fb0538e9 - 0.01% (8.99 KB)

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

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

[#007] sha256:f1a1f10e04bc0f992eb3de9bcff2252ba7cfc451c9ab1d3cca8c9a264ff42456 - 0.01% (4.3 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 21:43:53 UTC

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

2021-09-24 06:47:49 UTC

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

2021-09-24 06:47:58 UTC

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

2021-09-24 06:52:33 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 lz4-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 --with-lz4 ; 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-09-24 06:53: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-09-24 06:53:18 UTC

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

2021-09-24 06:53:24 UTC

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

2021-09-24 06:53:41 UTC

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

2021-09-24 06:53:48 UTC

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

2021-09-24 06:53:53 UTC

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

2021-09-24 06:53:56 UTC

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

2021-09-24 06:54:02 UTC

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

2021-09-24 06:54:14 UTC

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

2021-09-24 06:54:20 UTC

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

Details
Created

2021-09-23 22:53:51 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

14

PG_SHA256

586a816cb7811985f474eda0d4926fabd2378f0f6d5659d12fba421d38a07616

PG_VERSION

14rc1


Layers

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

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

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

[#003] sha256:5e553da16a5d90a76a41b979a429bab341b28dc1bbad36d8421ba661180e0d7a - 96.67% (72.5 MB)

[#004] sha256:c2543df2fc5f15d9399e85951251b20134246cc74134e3f81c425e592373e0a6 - 0.01% (8.98 KB)

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

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

[#007] sha256:0055cc2c63413511f46f39b03adef9ec61a7cf7ed8788969b30981abfbe05166 - 0.01% (4.3 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 00:49:32 UTC

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

2021-09-23 22:50:59 UTC

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

2021-09-23 22:50:59 UTC

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

2021-09-23 22:53:46 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 lz4-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 --with-lz4 ; 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-09-23 22:53:49 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-09-23 22:53:50 UTC

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

2021-09-23 22:53:50 UTC

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

2021-09-23 22:53:51 UTC

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

2021-09-23 22:53:51 UTC

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

2021-09-23 22:53:51 UTC

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

2021-09-23 22:53:51 UTC

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

2021-09-23 22:53:51 UTC

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

2021-09-23 22:53:51 UTC

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

2021-09-23 22:53:51 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