2023-03-07 07:08:26 UTC
140 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25699a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
PG_VERSION15.2
[#000] sha256:b3e346c15c2377ec0e75cc9efa98baecd58b0e9bb92f0ec07eeda0bcc7e67fc7 - 2.33% (3.25 MB)
[#001] sha256:c6d832ce0f2518e1427fb90867ab1e1f588b864b5528ba4a0b6cd07b40356657 - 0.0% (1.25 KB)
[#002] sha256:bbb6368f3eb13852efc507b7749b5b5a5ca180692cf768f5de160b3103e8b030 - 0.0% (149 Bytes)
[#003] sha256:79f8d59ab3bd331dcc8275a161db568ac6ddc4426961b88009caad347b560059 - 65.1% (91.1 MB)
[#004] sha256:3aaa6cf7539db137a769e327d2287acb8c5e45cbf863f71e7c70a8aabdecd3f1 - 0.01% (9.24 KB)
[#005] sha256:ec0ff163e0aaf280d21fe9abcabbfc2dcdbde444f8571265aae447bae763b6d7 - 0.0% (161 Bytes)
[#006] sha256:1d27af20545fff62d12d3b59bf0f698200ba9d5431165df4fff59139d89c383a - 0.0% (193 Bytes)
[#007] sha256:5dc0133bf5a5ab4b4164e76c4a3dda932e02bffb0082a325839a48c421cd9f81 - 0.0% (4.67 KB)
[#008] sha256:f0edf740c37c25836a12d3138ee1529b3d7f86e9e85af55cce7ed3a39f4e4e33 - 0.0% (2.06 KB)
[#009] sha256:605a8b6afa4ee04731ed2a1cfcbeee25f5c7247a69acadd3f7cb898d5f12e071 - 4.26% (5.97 MB)
[#010] sha256:ed4387266c77354c608b9f6ada3e7e6d95174cea66ecad856c8e832af6adc5dc - 16.13% (22.6 MB)
[#011] sha256:b14ee7e38c4f006dc1da4f124aa11926f06e9da6fd634276a2d5c7f199a75384 - 4.98% (6.97 MB)
[#012] sha256:c5a845651269232fe222fde445d49c0ce200c6c3fef59c8e06dc013559e2bceb - 7.19% (10.1 MB)
/bin/sh -c #(nop) ADD file:125f3514520a5cd29df2830a409aa026a2bc06a77a7a5d150133436404b33d41 in /
2023-02-10 21:24:24 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-03-01 18:58:30 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
2023-03-01 18:58:30 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-03-01 18:58:30 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-03-01 18:58:30 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2023-03-01 18:58:31 UTC/bin/sh -c #(nop) ENV PG_VERSION=15.2
2023-03-01 18:58:31 UTC/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
2023-03-01 19:03:23 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-03-01 19:03:25 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
2023-03-01 19:03:25 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2023-03-01 19:03:25 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-03-01 19:03:26 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-03-01 19:03:26 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-03-01 19:03:26 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-03-01 19:03:26 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-03-01 19:03:26 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-03-01 19:03:26 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-03-01 19:03:26 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-03-07 07:02:07 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2023-03-07 07:02:07 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2023-03-07 07:02:07 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2023-03-07 07:03:18 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2023-03-07 07:03:18 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2023-03-07 07:03:18 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2023-03-07 07:03:18 UTC (buildkit.dockerfile.v0)ARG TS_VERSION
2023-03-07 07:08:26 UTC (buildkit.dockerfile.v0)RUN |2 OSS_ONLY= TS_VERSION=2.10.1 /bin/sh -c set -ex && apk add libssl1.1 && apk add --no-cache --virtual .fetch-deps ca-certificates git openssl openssl-dev tar && mkdir -p /build/ && git clone https://github.com/timescale/timescaledb /build/timescaledb && apk add --no-cache --virtual .build-deps coreutils dpkg-dev dpkg gcc krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=OFF -DPROJECT_INSTALL_METHOD="docker"${OSS_ONLY} && cd build && make install && cd ~ && if [ "${OSS_ONLY}" != "" ]; then rm -f $(pg_config --pkglibdir)/timescaledb-tsl-*.so; fi && apk del .fetch-deps .build-deps && rm -rf /build && sed -r -i "s/[#]*\s*(shared_preload_libraries)\s*=\s*'(.*)'/\1 = 'timescaledb,\2'/;s/,'/'/" /usr/local/share/postgresql/postgresql.conf.sample # buildkit
2023-03-07 07:08:06 UTC
137 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25699a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
PG_VERSION15.2
[#000] sha256:63b65145d645c1250c391b2d16ebe53b3747c295ca8ba2fcb6b0cf064a4dc21c - 2.35% (3.22 MB)
[#001] sha256:c441836541d936a780ab5a18cf835d5ae7199cb588cec248614c06418dc7d74c - 0.0% (1.26 KB)
[#002] sha256:d49de1a24361effb80661c973c1fcf863dca0564eec7667a9be5b9981501e6a4 - 0.0% (149 Bytes)
[#003] sha256:b95308fc3d317f9d902bc98ab7ca5a4ae14f2e1fdc9082050e37f6d09ad34623 - 63.22% (86.5 MB)
[#004] sha256:b0668417a86c843812fee781d9f862a180d1d35fa8936ff1062e4e1b6d1622af - 0.01% (9.23 KB)
[#005] sha256:a0fc954fc7aab68d8c9bbfb55b3a500024b85c0f9126767e8c4b65b494af092e - 0.0% (162 Bytes)
[#006] sha256:93f84ed83d814338eda02e9941d478da5dd2c7f14594bcaa2601d3192af46867 - 0.0% (194 Bytes)
[#007] sha256:62e42e95b14320acc58478673bad0b2a24e5a15ca8dc1b004b1bc2a4c69193fd - 0.0% (4.67 KB)
[#008] sha256:d41f753a75f2690c6d9a3967a4f51b0cc1b1aa7e33f3231bbc93ce6c607399ee - 0.0% (2.06 KB)
[#009] sha256:ded071194a0582d5ccabcc924df29764370ffcfee2113d91636c02e2aa16e08a - 4.35% (5.96 MB)
[#010] sha256:3f37e11fed24bd74103d91c867825197f75b0cc3f62e747a7ff7ca922ed9cad5 - 17.36% (23.8 MB)
[#011] sha256:e6be357eb5442f514b39d3007b9af52708f8cf9da91cea57afee6606e159e963 - 5.09% (6.97 MB)
[#012] sha256:79632b3f3b605969a5f036ff7bae3a6ed9d8c1dd0586ffef073f58710c7dd651 - 7.6% (10.4 MB)
/bin/sh -c #(nop) ADD file:40887ab7c06977737e63c215c9bd297c0c74de8d12d16ebdf1c3d40ac392f62d in /
2023-02-11 04:46:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-02-11 05:02:45 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
2023-02-11 05:02:45 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-02-11 05:02:46 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-02-11 05:02:46 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2023-02-11 05:02:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=15.2
2023-02-11 05:02:46 UTC/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
2023-02-11 05:05:28 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-02-11 05:05: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
2023-02-11 05:05:30 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2023-02-11 05:05:30 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-02-11 05:05:30 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-02-11 05:05:30 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-02-11 05:05:31 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-02-11 05:05:31 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-02-11 05:05:31 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-02-11 05:05:31 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-02-11 05:05:31 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-03-07 07:02:09 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2023-03-07 07:02:09 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2023-03-07 07:02:09 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2023-03-07 07:03:06 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2023-03-07 07:03:06 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2023-03-07 07:03:06 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2023-03-07 07:03:06 UTC (buildkit.dockerfile.v0)ARG TS_VERSION
2023-03-07 07:08:06 UTC (buildkit.dockerfile.v0)RUN |2 OSS_ONLY= TS_VERSION=2.10.1 /bin/sh -c set -ex && apk add libssl1.1 && apk add --no-cache --virtual .fetch-deps ca-certificates git openssl openssl-dev tar && mkdir -p /build/ && git clone https://github.com/timescale/timescaledb /build/timescaledb && apk add --no-cache --virtual .build-deps coreutils dpkg-dev dpkg gcc krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=OFF -DPROJECT_INSTALL_METHOD="docker"${OSS_ONLY} && cd build && make install && cd ~ && if [ "${OSS_ONLY}" != "" ]; then rm -f $(pg_config --pkglibdir)/timescaledb-tsl-*.so; fi && apk del .fetch-deps .build-deps && rm -rf /build && sed -r -i "s/[#]*\s*(shared_preload_libraries)\s*=\s*'(.*)'/\1 = 'timescaledb,\2'/;s/,'/'/" /usr/local/share/postgresql/postgresql.conf.sample # buildkit
2023-03-07 07:40:57 UTC
133 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25699a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
PG_VERSION15.2
[#000] sha256:6a6e4ab63e54442e16400f69d37f662d60cbd67565631eff6bf59b4176e482c3 - 2.23% (2.97 MB)
[#001] sha256:fd3be2e4174da8cb5ecbedfb0b85ae6b362b7c443a6479bdf91457dbae634dd0 - 0.0% (1.23 KB)
[#002] sha256:9877c20fd3ad89eeb42094eba3dabd48c6d80c883b60ebfe4177ea4b69588705 - 0.0% (115 Bytes)
[#003] sha256:1e591a30b0681633482a6a28170d1c5d900985f1ede0a4002fe623270871d66d - 63.57% (84.7 MB)
[#004] sha256:80c0a72b86595a1f8c1f8901faf7181184b4b389d52118ffbe9806746960bbbf - 0.01% (9.23 KB)
[#005] sha256:99c2519613b5629924a1866ad19e5422eeb0be1fea85aa71afcc59e26188a9ee - 0.0% (129 Bytes)
[#006] sha256:8d359c3023dfdbff587fc11b9843f570085b2ec437ef8225d40cad5d08c450ee - 0.0% (165 Bytes)
[#007] sha256:a4c7a3f4b3ed5209d0fc99e985c5b922343a0a841aba1621014b137946a8f9e4 - 0.0% (4.67 KB)
[#008] sha256:f082f185258a9deaa67177d1cdcb743572e8e4ca1c48ba250e0638bab06b97e2 - 0.0% (2.05 KB)
[#009] sha256:7d92888199d5d1524a9e9e5023f312de5cbbc770ec1687baeed82fb060392ec1 - 4.28% (5.69 MB)
[#010] sha256:7af5f48883608eb94bc8a0e0f76b17c45004ea80830a87a8e2c4900f77613c29 - 17.41% (23.2 MB)
[#011] sha256:dad6abf31d4252f2a0d8b72d779e1ca9d988e0f19707d4bdd4a8adf44eb488bc - 5.23% (6.97 MB)
[#012] sha256:6c9f7f9b592fcd32180dab9810e460896c382cc9859f93604020a3c7844cfac1 - 7.27% (9.69 MB)
/bin/sh -c #(nop) ADD file:d825d9aef59df0df23c0140a490998407ee0a62a051699b5c050aef7cb03f042 in /
2023-02-10 20:49:28 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-02-11 06:16:54 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
2023-02-11 06:16:55 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-02-11 06:16:55 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-02-11 06:16:55 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2023-02-11 06:16:55 UTC/bin/sh -c #(nop) ENV PG_VERSION=15.2
2023-02-11 06:16:55 UTC/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
2023-02-11 06:20:25 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-02-11 06:20:27 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
2023-02-11 06:20:28 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2023-02-11 06:20:28 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-02-11 06:20:28 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-02-11 06:20:28 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-02-11 06:20:28 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-02-11 06:20:28 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-02-11 06:20:29 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-02-11 06:20:29 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-02-11 06:20:29 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-03-07 07:02:06 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2023-03-07 07:02:06 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2023-03-07 07:02:06 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2023-03-07 07:10:21 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2023-03-07 07:10:21 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2023-03-07 07:10:21 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2023-03-07 07:10:21 UTC (buildkit.dockerfile.v0)ARG TS_VERSION
2023-03-07 07:40:57 UTC (buildkit.dockerfile.v0)RUN |2 OSS_ONLY= TS_VERSION=2.10.1 /bin/sh -c set -ex && apk add libssl1.1 && apk add --no-cache --virtual .fetch-deps ca-certificates git openssl openssl-dev tar && mkdir -p /build/ && git clone https://github.com/timescale/timescaledb /build/timescaledb && apk add --no-cache --virtual .build-deps coreutils dpkg-dev dpkg gcc krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=OFF -DPROJECT_INSTALL_METHOD="docker"${OSS_ONLY} && cd build && make install && cd ~ && if [ "${OSS_ONLY}" != "" ]; then rm -f $(pg_config --pkglibdir)/timescaledb-tsl-*.so; fi && apk del .fetch-deps .build-deps && rm -rf /build && sed -r -i "s/[#]*\s*(shared_preload_libraries)\s*=\s*'(.*)'/\1 = 'timescaledb,\2'/;s/,'/'/" /usr/local/share/postgresql/postgresql.conf.sample # buildkit
2023-03-07 07:41:09 UTC
128 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25699a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
PG_VERSION15.2
[#000] sha256:6fb81ff47bd6d7db0ed86c9b951ad6417ec73ab60af6d22daa604076a902629c - 2.14% (2.74 MB)
[#001] sha256:b779979c0a1a5e809efea05974f4b9601f4b1a66e912e3c8c442cd3d791926bc - 0.0% (1.26 KB)
[#002] sha256:6ba6cc7df0ec1c30b09b5bd76f0571e735591a65a03e3d79cca9435a88dfd968 - 0.0% (149 Bytes)
[#003] sha256:a6996a08e8e954e22b479b5b5633cb67962aa5103b4225c2a309831f6a09c8e2 - 62.28% (79.8 MB)
[#004] sha256:3d54d88c3087692c49ec471b3e90424f1753d2981297416895f451d76a979aff - 0.01% (9.23 KB)
[#005] sha256:8e10d16e588b870d68a2fa9a5b40f255f9e2567b368cfa365d20f8f4a2a40963 - 0.0% (161 Bytes)
[#006] sha256:bc88f76b10c0207b3bfb185a7df9fdced0e097d90bb39dfaa84c134124383323 - 0.0% (194 Bytes)
[#007] sha256:42cd5870af1070f8987d2d5e768ca4f5af2c1cdad591f212c53574110ac18e0c - 0.0% (4.67 KB)
[#008] sha256:b59d5885654f0715027897f5590335703379b609d031eb2646ef54d521d739c4 - 0.0% (2.06 KB)
[#009] sha256:154875c842e43e85aba523a75f888321bb62d718a434e270b7d78638578cf478 - 4.44% (5.69 MB)
[#010] sha256:ae0f9022931538d1e5a3013c7be8deda561fd879a5e1690ef8e7128702ffe94b - 18.0% (23.1 MB)
[#011] sha256:e83eca4fbd40c6dd8deda9af4691523c5ea603d4c7beb371cb0f30fabeee22aa - 5.44% (6.97 MB)
[#012] sha256:59f14d62f84a9aecc16b403dd868d4e390ecbc0f02d552ef8c58cdf3a1aa0df6 - 7.69% (9.86 MB)
/bin/sh -c #(nop) ADD file:143b601fcc6b5d7d95d3e5ccad3fec7081191a47e28d4f9294a7fb2499cab1af in /
2023-02-10 21:51:31 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-03-01 10:57:10 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
2023-03-01 10:57:10 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-03-01 10:57:11 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-03-01 10:57:12 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2023-03-01 10:57:12 UTC/bin/sh -c #(nop) ENV PG_VERSION=15.2
2023-03-01 10:57:12 UTC/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
2023-03-01 11:01:10 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-03-01 11:01: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
2023-03-01 11:01:23 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2023-03-01 11:01:23 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-03-01 11:01:24 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-03-01 11:01:24 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-03-01 11:01:24 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-03-01 11:01:24 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-03-01 11:01:24 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-03-01 11:01:24 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-03-01 11:01:25 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-03-07 07:02:01 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2023-03-07 07:02:01 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2023-03-07 07:02:01 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2023-03-07 07:09:19 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2023-03-07 07:09:20 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2023-03-07 07:09:20 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2023-03-07 07:09:20 UTC (buildkit.dockerfile.v0)ARG TS_VERSION
2023-03-07 07:41:09 UTC (buildkit.dockerfile.v0)RUN |2 OSS_ONLY= TS_VERSION=2.10.1 /bin/sh -c set -ex && apk add libssl1.1 && apk add --no-cache --virtual .fetch-deps ca-certificates git openssl openssl-dev tar && mkdir -p /build/ && git clone https://github.com/timescale/timescaledb /build/timescaledb && apk add --no-cache --virtual .build-deps coreutils dpkg-dev dpkg gcc krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=OFF -DPROJECT_INSTALL_METHOD="docker"${OSS_ONLY} && cd build && make install && cd ~ && if [ "${OSS_ONLY}" != "" ]; then rm -f $(pg_config --pkglibdir)/timescaledb-tsl-*.so; fi && apk del .fetch-deps .build-deps && rm -rf /build && sed -r -i "s/[#]*\s*(shared_preload_libraries)\s*=\s*'(.*)'/\1 = 'timescaledb,\2'/;s/,'/'/" /usr/local/share/postgresql/postgresql.conf.sample # buildkit
2023-03-07 07:42:00 UTC
134 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA25699a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
PG_VERSION15.2
[#000] sha256:af6eaf76a39c2d3e7e0b8a0420486e3df33c4027d696c076a99a3d0ac09026af - 2.33% (3.11 MB)
[#001] sha256:71286d2ce0cc0803a31c93bdd02c2974bcf648b2587eab598a95d3304821b328 - 0.0% (1.26 KB)
[#002] sha256:b82afe47906a58fdc251da4eba9d943f6f1aa95833f128935ffac4ee84c4ef75 - 0.0% (149 Bytes)
[#003] sha256:75d514bb4aa7956b346ecec7a4c6de3f35335b7c721e4135fd2579ca1d64c576 - 63.2% (84.5 MB)
[#004] sha256:217da6f41d9e722df36d3afa17845c285df3cdf7ad86e4dfdbbc724af8997bfb - 0.01% (9.23 KB)
[#005] sha256:39a3f48231261b6c34da7b341ba73922e72466c291daa3fd89ec4b26682e66de - 0.0% (161 Bytes)
[#006] sha256:ed6571a6afccc930a7f3aee356c5cd6bc3e42841b540a24ba2171b119238bcac - 0.0% (195 Bytes)
[#007] sha256:8ae7d38f54c4c995a4bdfbb25601547118fef3e811501f5d0a1ba49ce42abb2d - 0.0% (4.67 KB)
[#008] sha256:82e6ee62edfdeadc2ba2d9d8b8ca3d91488887e3f76ae4d73a612da7dc6cea47 - 0.0% (2.06 KB)
[#009] sha256:aeac5f3423e4c889b93c87762782d5cc415097782eb7052c3d93a6c98301765d - 4.19% (5.6 MB)
[#010] sha256:ceb86d557bc2c4d29b2553c2a6a2e315b3807deb731b9848d1fd1f93a46ccd56 - 17.44% (23.3 MB)
[#011] sha256:b6a7bd6d99213e3ce608e8e092a9242fdffb8377c9bc253fa2556b516d3502a6 - 5.21% (6.97 MB)
[#012] sha256:8f18c5a71c3b88d9967e667d877c86db6629d74422e7f889b3eb287917c13377 - 7.62% (10.2 MB)
/bin/sh -c #(nop) ADD file:9bd9ea42a9f3bdc769e80c6b8a4b117d65f73ae68e155a6172a1184e7ac8bcc1 in /
2023-02-10 21:24:08 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-02-11 03:07:58 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
2023-02-11 03:07:58 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-02-11 03:07:59 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-02-11 03:07:59 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2023-02-11 03:07:59 UTC/bin/sh -c #(nop) ENV PG_VERSION=15.2
2023-02-11 03:07:59 UTC/bin/sh -c #(nop) ENV PG_SHA256=99a2171fc3d6b5b5f56b757a7a3cb85d509a38e4273805def23941ed2b8468c7
2023-02-11 03:09:58 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-02-11 03:09:59 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-02-11 03:10:00 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2023-02-11 03:10:00 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-02-11 03:10:00 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2023-02-11 03:10:00 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-02-11 03:10:00 UTC/bin/sh -c #(nop) COPY file:8532d121e17f2ce9a5f749e2bb1c2800d41f880daad16051150ea9824a2ed88f in /usr/local/bin/
2023-02-11 03:10:00 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-02-11 03:10:01 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-02-11 03:10:01 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-02-11 03:10:01 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-03-07 07:02:03 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2023-03-07 07:02:03 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2023-03-07 07:02:03 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2023-03-07 07:09:28 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2023-03-07 07:09:28 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2023-03-07 07:09:28 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2023-03-07 07:09:28 UTC (buildkit.dockerfile.v0)ARG TS_VERSION
2023-03-07 07:42:00 UTC (buildkit.dockerfile.v0)RUN |2 OSS_ONLY= TS_VERSION=2.10.1 /bin/sh -c set -ex && apk add libssl1.1 && apk add --no-cache --virtual .fetch-deps ca-certificates git openssl openssl-dev tar && mkdir -p /build/ && git clone https://github.com/timescale/timescaledb /build/timescaledb && apk add --no-cache --virtual .build-deps coreutils dpkg-dev dpkg gcc krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=OFF -DPROJECT_INSTALL_METHOD="docker"${OSS_ONLY} && cd build && make install && cd ~ && if [ "${OSS_ONLY}" != "" ]; then rm -f $(pg_config --pkglibdir)/timescaledb-tsl-*.so; fi && apk del .fetch-deps .build-deps && rm -rf /build && sed -r -i "s/[#]*\s*(shared_preload_libraries)\s*=\s*'(.*)'/\1 = 'timescaledb,\2'/;s/,'/'/" /usr/local/share/postgresql/postgresql.conf.sample # buildkit
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.