2020-12-03 18:14:32 UTC
71.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
PG_VERSION12.5
TIMESCALEDB_VERSION2.0.0-rc4
[#000] sha256:d6ca64ac6f4b6382142ce9a3501652938130a6ec4bb02f3f455ee1f980834cfe - 3.74% (2.66 MB)
[#001] sha256:596122efb908f979efd1794c09ae9c7a15ac0e4d53f2c181fd646d9f32565d9a - 0.0% (1.22 KB)
[#002] sha256:feeb7bd791d51cd161cadd22b53bd066e70998ebd55dd5ba92760d35f1ab9e8b - 0.0% (113 Bytes)
[#003] sha256:7dd39a12c1d9a9ac0cdc6bbb234351f319e39a491ac54abe2097130b038bf694 - 83.3% (59.2 MB)
[#004] sha256:4469e82e03571112d7ff9ed619327ef64620c9519174864431697b688ebe1d72 - 0.01% (8.02 KB)
[#005] sha256:8ea86d9ea9f67031a67da8e0db0c94489fb250ca9a5f6f334bcc8c3c91e0ca09 - 0.0% (128 Bytes)
[#006] sha256:eb75f4315dcd207601e99b3b63a42b757e2f51b034f8ba54ee1a6324dbd2d494 - 0.0% (163 Bytes)
[#007] sha256:49c556cf1062b8a2725032663018a499370d4149cab844a382798b0ab09ac025 - 0.01% (4.16 KB)
[#008] sha256:0e57565b8903d3ab62370f940002e401b395302bc164074d87cf13561b49f231 - 0.0% (1.96 KB)
[#009] sha256:375c2a6aee6131465c066eb3c13c60f298cff6135474d28cd6a411e6fc1a046a - 7.78% (5.54 MB)
[#010] sha256:caf4bb7d6ce952613eb503302c094294f3ac503aa286b735e4678b9d0942ae57 - 2.96% (2.11 MB)
[#011] sha256:cd8fd9e96dd33655f178e34dde43761c697359ffc26097a523aa6ea19887ff21 - 0.22% (160 KB)
[#012] sha256:39fc3e7fa00fdf822700e4dee3bb53aac60cbb69623a9d1023b39cbfa9c63f1b - 1.97% (1.4 MB)
/bin/sh -c #(nop) ADD file:46ad43b4984bcf49c5a888ff3628f23161f55cd1fb062f469e707100c97fa254 in /
2020-10-22 02:00:33 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-10-22 09:38:39 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2020-10-22 09:38:39 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-10-22 09:38:40 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-10-22 09:47:38 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-11-13 02:52:58 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.5
2020-11-13 02:52:59 UTC/bin/sh -c #(nop) ENV PG_SHA256=bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
2020-11-13 03:02:47 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-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
2020-11-13 03:02:48 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-11-13 03:02:49 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-11-13 03:02:49 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-11-13 03:02:50 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-11-13 03:02:50 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-11-13 03:02:50 UTC/bin/sh -c #(nop) COPY file:8f542efd076b9b67ef64928f3c0185ed50bfcbbc3572436a7222e879810d747f in /usr/local/bin/
2020-11-13 03:02:50 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-11-13 03:02:51 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-11-13 03:02:51 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-11-13 03:02:51 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0-rc4
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-12-03 18:13:05 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-12-03 18:13:05 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-12-03 18:13:05 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-12-03 18:14:32 UTC (buildkit.dockerfile.v0)RUN |1 OSS_ONLY= -DAPACHE_ONLY=1 /bin/sh -c set -ex && 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 libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TIMESCALEDB_VERSION} && ./bootstrap -DREGRESS_CHECKS=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
2020-12-03 18:14:25 UTC
67.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
PG_VERSION12.5
TIMESCALEDB_VERSION2.0.0-rc4
[#000] sha256:188c0c94c7c576fff0792aca7ec73d67a2f7f4cb3a6e53a84559337260b36964 - 3.95% (2.67 MB)
[#001] sha256:56f1d1b70e7fa650fd6229086120f763219adce9e33e8b20bdfbf8452ab69847 - 0.0% (1.22 KB)
[#002] sha256:9b4f01476d2b86761cdb0414c4a583b89af3b5d0b67022cfc0d378743307f7e3 - 0.0% (115 Bytes)
[#003] sha256:b0d449a40710e7ec5cce0ba7809c9bfc4849cb17caf8d3cfe9e88b6b263b8bb6 - 82.72% (55.8 MB)
[#004] sha256:88ed24c6a1877687ee5e6aec6ac3f2b4c29df46bfba084ecbddc4a18943527f2 - 0.01% (8.02 KB)
[#005] sha256:657b3b4198a32c5e252e29b77b6acaf58f23a865a09815c08a88097b660ab45e - 0.0% (129 Bytes)
[#006] sha256:955840c27d8106238092be3201796bb872cc2111efefcfbaa80aa8ea5c305740 - 0.0% (162 Bytes)
[#007] sha256:5cbddf0e714404719f74d2f96ecc06c756752e0ea0c47046fea5a6dcb9bb2ada - 0.01% (4.16 KB)
[#008] sha256:0e57565b8903d3ab62370f940002e401b395302bc164074d87cf13561b49f231 - 0.0% (1.96 KB)
[#009] sha256:ac965dd7c2081a4307ee67efa1b66ab8b87f7e4f9120a1857e0cfbff20ea2755 - 8.29% (5.6 MB)
[#010] sha256:af0c902907bba627b8af7716ad096ec523f694ac9b7870aa28dd56ca3d80981c - 2.76% (1.86 MB)
[#011] sha256:5df38e367343a4cb0601d8c3d5090e918064bdc5ff1623ca489af9bdec35f70c - 0.23% (160 KB)
[#012] sha256:ef1a3958839d1a8add331a3ffe71d898c5fbb23944d6e3c05c172a994243736b - 2.03% (1.37 MB)
/bin/sh -c #(nop) ADD file:f17f65714f703db9012f00e5ec98d0b2541ff6147c2633f7ab9ba659d0c507f4 in /
2020-10-22 02:19:24 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-10-22 07:55:14 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
2020-10-22 07:55:14 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-10-22 07:55:15 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-10-22 08:01:06 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-11-13 02:29:40 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.5
2020-11-13 02:29:40 UTC/bin/sh -c #(nop) ENV PG_SHA256=bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
2020-11-13 02:35:04 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 llvm10-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
2020-11-13 02:35:05 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-11-13 02:35:06 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-11-13 02:35:07 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-11-13 02:35:08 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-11-13 02:35:08 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-11-13 02:35:08 UTC/bin/sh -c #(nop) COPY file:8f542efd076b9b67ef64928f3c0185ed50bfcbbc3572436a7222e879810d747f in /usr/local/bin/
2020-11-13 02:35:08 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-11-13 02:35:08 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-11-13 02:35:08 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-11-13 02:35:09 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0-rc4
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-12-03 18:13:05 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-12-03 18:13:05 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-12-03 18:13:05 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-12-03 18:14:25 UTC (buildkit.dockerfile.v0)RUN |1 OSS_ONLY= -DAPACHE_ONLY=1 /bin/sh -c set -ex && 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 libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TIMESCALEDB_VERSION} && ./bootstrap -DREGRESS_CHECKS=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
2020-12-03 18:22:43 UTC
65.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
PG_VERSION12.5
TIMESCALEDB_VERSION2.0.0-rc4
[#000] sha256:bad30e7b45c14f784ef29a828b5fc69db0ebdefebcde6a7c98f4f77ffc93a546 - 3.79% (2.48 MB)
[#001] sha256:c54bc8a79538fa79db3e734327f2a73654bc80285dc55b7e4d8d206161ec79a9 - 0.0% (1.25 KB)
[#002] sha256:30574d1822b9e42c2a6da5e4a8f52ab65d88be941e497b4565382967ebd326f8 - 0.0% (149 Bytes)
[#003] sha256:58a89f3e5caaa99cb6b814440ff490373a3f82d4fcc83bbe1a712d79142faf4f - 83.06% (54.4 MB)
[#004] sha256:f25ff49e10b930eaedbfabba82da9ac57703de30997e8572d98d81b01722bb9e - 0.01% (8.02 KB)
[#005] sha256:1f62496dd1e1b7c8d0cfcfb0822a2eac3112f4c5ed16805733f4a883787f7947 - 0.0% (161 Bytes)
[#006] sha256:7f42d419b8712f51eb5e44d6167696b6f24e017f2f7e32a9fe515f5ab6dad617 - 0.0% (193 Bytes)
[#007] sha256:4676fccecbb8d9be5e295cd5e58b7eea581c5863abe9f4ba46273c5721d46a06 - 0.01% (4.16 KB)
[#008] sha256:0e57565b8903d3ab62370f940002e401b395302bc164074d87cf13561b49f231 - 0.0% (1.96 KB)
[#009] sha256:1e9bac8525ccce864b2beaff9954712449e08614e4a27ad4681794c2d513d3c9 - 8.11% (5.31 MB)
[#010] sha256:a4d6330dc8242c560364ea27469a1509922eaa62da9ae6ad16196c6cb7c15c80 - 2.7% (1.77 MB)
[#011] sha256:cd76c9203b4b15e0d11db14b72d3c958a9df1b34a22fcbc7e67c5dc72d63b38b - 0.24% (160 KB)
[#012] sha256:b77a6ff7383c621f02654fa3cae090cbc9fc1d42437665dbf50b7dd382df9e1b - 2.08% (1.36 MB)
/bin/sh -c #(nop) ADD file:dec4d3b6cf21c59820d1d74a554d0a193b5f4859e00b932f31ffe73f554d5afb in /
2020-10-22 02:01:12 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-10-22 08:55:00 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2020-10-22 08:55:00 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-10-22 08:55:02 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-10-22 09:00:06 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-11-13 02:57:25 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.5
2020-11-13 02:57:26 UTC/bin/sh -c #(nop) ENV PG_SHA256=bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
2020-11-13 03:01:35 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 llvm10-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
2020-11-13 03:01:39 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-11-13 03:01:43 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-11-13 03:01:45 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-11-13 03:01:49 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-11-13 03:01:49 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-11-13 03:01:50 UTC/bin/sh -c #(nop) COPY file:8f542efd076b9b67ef64928f3c0185ed50bfcbbc3572436a7222e879810d747f in /usr/local/bin/
2020-11-13 03:01:51 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-11-13 03:01:51 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-11-13 03:01:53 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-11-13 03:01:53 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0-rc4
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-12-03 18:15:49 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-12-03 18:15:49 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-12-03 18:15:49 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-12-03 18:22:43 UTC (buildkit.dockerfile.v0)RUN |1 OSS_ONLY= -DAPACHE_ONLY=1 /bin/sh -c set -ex && 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 libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TIMESCALEDB_VERSION} && ./bootstrap -DREGRESS_CHECKS=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
2020-12-03 18:22:22 UTC
62.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
PG_VERSION12.5
TIMESCALEDB_VERSION2.0.0-rc4
[#000] sha256:5f2023fd85a4e68f37fe41421fd89f30e69b98a645613521c57c01317561eee3 - 3.67% (2.29 MB)
[#001] sha256:0e7eedf40b1ca3ca0c12781ef9399626d49e7898eb4dc6bf3888a3add86c9ee2 - 0.0% (1.25 KB)
[#002] sha256:dc2cc4a27e16f2350721162545664e1c967b92e8a0ecffb90828c979f0bc3ac6 - 0.0% (147 Bytes)
[#003] sha256:f2a9e7f4998c4777672dc21589df42e0dd7412ce380c763e9e1747e8fdb0e1bc - 82.85% (51.8 MB)
[#004] sha256:10ad8d880cf55ff40b46b9b29566edd1629af23257ba98545298c678193c733f - 0.01% (8.02 KB)
[#005] sha256:32aa3039f166a362b053169328f19ae8ae111260e56f3225107350d9a51e5d4f - 0.0% (162 Bytes)
[#006] sha256:9b0af9f6896d0cd76f2d1f236f5c945f2119ec95a9e678671b0351ac163dfa0d - 0.0% (194 Bytes)
[#007] sha256:57b6d0d21b3d0a61152f5954d632934b963d5f03ea4abe9740e93aa6ee2aabb7 - 0.01% (4.16 KB)
[#008] sha256:df91a75a8f2efa75e16f2e8ffea277c8c0bee28e2ca7a614bd0726df00fa8bbe - 0.0% (1.96 KB)
[#009] sha256:8211cc3722d8f2e0bbb02007e05defa427dbdc8fde483dc54c16ce853507d0bb - 8.48% (5.3 MB)
[#010] sha256:8ff11cfd5bc6f98779e4e5c77d2a9f7868508eee728b9d3b76cdff1566f6beb4 - 2.63% (1.64 MB)
[#011] sha256:65bb5e45b1877778911c245fe2013feed3d421bc7afa898ae1e2bc428e25d8b5 - 0.25% (160 KB)
[#012] sha256:987d6bb6c76e823e9b486f442e9f4a71206fd0d15a8a63c0278d3f158f61e009 - 2.11% (1.32 MB)
/bin/sh -c #(nop) ADD file:46f89172426e9f5b1d669a2ca7ab218fc2deaef1caeeab88f2b5bd443ac9773d in /
2020-10-22 01:58:14 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-10-22 08:56:01 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
2020-10-22 08:56:03 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-10-22 08:56:05 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-10-22 09:00:10 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-11-13 03:55:14 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.5
2020-11-13 03:55:15 UTC/bin/sh -c #(nop) ENV PG_SHA256=bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
2020-11-13 03:58:08 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-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
2020-11-13 03:58:14 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-11-13 03:58:16 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-11-13 03:58:17 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-11-13 03:58:19 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-11-13 03:58:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-11-13 03:58:21 UTC/bin/sh -c #(nop) COPY file:8f542efd076b9b67ef64928f3c0185ed50bfcbbc3572436a7222e879810d747f in /usr/local/bin/
2020-11-13 03:58:22 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-11-13 03:58:23 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-11-13 03:58:24 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-11-13 03:58:24 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0-rc4
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-12-03 18:15:11 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-12-03 18:15:11 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-12-03 18:15:11 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-12-03 18:22:22 UTC (buildkit.dockerfile.v0)RUN |1 OSS_ONLY= -DAPACHE_ONLY=1 /bin/sh -c set -ex && 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 libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TIMESCALEDB_VERSION} && ./bootstrap -DREGRESS_CHECKS=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
2020-12-03 18:22:18 UTC
66.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
PG_VERSION12.5
TIMESCALEDB_VERSION2.0.0-rc4
[#000] sha256:5f621e34cdf485f410766dc9a0fc7855d17916d0f6583b58cbdce7c28831f527 - 3.87% (2.58 MB)
[#001] sha256:b46b3b77440641e62ecc741cdb44f0f558d15c3f3b6d506be26f8c285f7a36ff - 0.0% (1.25 KB)
[#002] sha256:b85615d5b5e22de086f665265885eae6f4cb41a63e5ed6910df6d0d03d0e90c5 - 0.0% (149 Bytes)
[#003] sha256:c24a61b0ab09f993db95f91bb58b52e14fd44a5cf5f0831e5f9ac6779d6cf6ed - 83.18% (55.5 MB)
[#004] sha256:994a060e79a00fac1abdf5a1d7f7fe9e3318c75a4c1d6fe2f1b54c9462261cf8 - 0.01% (8.02 KB)
[#005] sha256:caeefd9ca11aad71d1fdabaf4ec7e436e24ef276a89248fdc491801949206ed6 - 0.0% (162 Bytes)
[#006] sha256:880c732d86bc522c1f47c1d07da2302aacb86663f7d970ef35fe78643dbdc536 - 0.0% (195 Bytes)
[#007] sha256:245d6def9b6185ed6f9265969988d4f825ed311fc5e4b0773982e83663cc8c70 - 0.01% (4.17 KB)
[#008] sha256:0e57565b8903d3ab62370f940002e401b395302bc164074d87cf13561b49f231 - 0.0% (1.96 KB)
[#009] sha256:95f1311b6f6ff779d89be9ef3c29fa80a133c590dcd7ea02d5ebb31f3b96cd48 - 7.9% (5.27 MB)
[#010] sha256:c264ce1d6365a4916d3417af07a32e8981dbe00a4af9b7d9ae7b6bd379a4d5f9 - 2.74% (1.83 MB)
[#011] sha256:3254cd9d46552aca36bc2547129fef2a7e42ebbb7b8df4fa5f5e67d3d1d381d5 - 0.23% (160 KB)
[#012] sha256:3fb72ef1afea8156871dec4cb0ac683f97aafce00f3de8564c5adf3564fe9142 - 2.06% (1.38 MB)
/bin/sh -c #(nop) ADD file:55c4e9752146061a2b5f76027221329f423687987c0744ef577130c60ff0ba42 in /
2020-10-22 02:01:06 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-10-22 08:21:49 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
2020-10-22 08:21:49 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-10-22 08:21:51 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-10-22 08:26:00 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-11-13 02:46:41 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.5
2020-11-13 02:46:42 UTC/bin/sh -c #(nop) ENV PG_SHA256=bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
2020-11-13 02:49: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 llvm10-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
2020-11-13 02:49:48 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-11-13 02:49:51 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-11-13 02:49:52 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-11-13 02:49:55 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-11-13 02:49:56 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-11-13 02:49:57 UTC/bin/sh -c #(nop) COPY file:8f542efd076b9b67ef64928f3c0185ed50bfcbbc3572436a7222e879810d747f in /usr/local/bin/
2020-11-13 02:49:58 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-11-13 02:49:59 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-11-13 02:50:00 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-11-13 02:50:02 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0-rc4
2020-12-03 18:12:35 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-12-03 18:15:12 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-12-03 18:15:13 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-12-03 18:15:13 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-12-03 18:22:18 UTC (buildkit.dockerfile.v0)RUN |1 OSS_ONLY= -DAPACHE_ONLY=1 /bin/sh -c set -ex && 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 libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TIMESCALEDB_VERSION} && ./bootstrap -DREGRESS_CHECKS=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.