2021-01-04 18:46:29 UTC
71.2 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
[#000] sha256:455793c72b878001f0905634ed52a2524ba51796e7377bf00683a85123f7dce9 - 3.74% (2.66 MB)
[#001] sha256:5305178ae8cb85c448e0963870f5425a527c36dae59155568c8da341f4173b82 - 0.0% (1.22 KB)
[#002] sha256:5f3614159f507682c618782d96e8e35ed8b175b4dff44e39ef793184e39ba180 - 0.0% (115 Bytes)
[#003] sha256:e6ecc241f765a804fa84df1b0e3b9af034bd382606d710a3c233efc65df50567 - 83.4% (59.4 MB)
[#004] sha256:b9d9b4ad52ed0ea50c0cbeba808cfc61180f4f3a39bb9edaae859feb8845e13d - 0.01% (8.01 KB)
[#005] sha256:b0e8a5ff13514a225a2632b9b5e610333fa256750ba0b4380ceeda6155c0544d - 0.0% (128 Bytes)
[#006] sha256:a86c044ac0a7868073a4ab33f917d6be043ec161c9b777a52c279fd17224a6aa - 0.0% (162 Bytes)
[#007] sha256:c15cd0662b3ac44b1edb485b990a9ba37fa9a308a82a90584ef64e37533505c0 - 0.01% (4.29 KB)
[#008] sha256:d70a2caf4d7eca8120d0d7f9ce1ce4fc139156e4fde28fa0265b1ad0fabf73fe - 0.0% (2 KB)
[#009] sha256:f160e0d20362b56fe905b2153fe3f94d055ba665588c1dd4b4b0af1a5843c2d8 - 7.78% (5.54 MB)
[#010] sha256:f6b68b8e4f956eb285b1991af7b64d76813451e0030f3c226264e175da359230 - 3.35% (2.39 MB)
[#011] sha256:c0df4dc80debdee46f38587d0e21cec79e6b99074a3daedbd480018118bd1e1b - 0.25% (181 KB)
[#012] sha256:b51cd3d84b8ee633203a4b3fb07ecc68cd058b3f485cb2e6ae0f00a3e6602c0c - 1.45% (1.03 MB)
/bin/sh -c #(nop) ADD file:de33fda50a142403e842620d20bc4404e66fc4ace16edc6946c4539e8a797458 in /
2020-12-17 00:38:32 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-12-17 05:49:55 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-12-17 05:49:56 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-12-17 05:49:56 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-12-17 05:57:20 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-12-17 05:57:20 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.5
2020-12-17 05:57:20 UTC/bin/sh -c #(nop) ENV PG_SHA256=bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
2020-12-18 20:33:40 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-12-18 20:33:41 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-12-18 20:33:41 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-12-18 20:33:42 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-12-18 20:33:42 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-12-18 20:33:42 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-12-30 00:41:22 UTC/bin/sh -c #(nop) COPY file:f937c0ee3ab8736d7adeefe3108ce546c352d85751a620058fb9427c3648a82c in /usr/local/bin/
2020-12-30 00:41:22 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-12-30 00:41:22 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-12-30 00:41:22 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-12-30 00:41:23 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-01-04 18:45:13 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-01-04 18:45:13 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-01-04 18:45:13 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-01-04 18:46:29 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 -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
2021-01-04 18:46:25 UTC
67.6 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
[#000] sha256:801bfaa63ef2094d770c809815b9e2b9c1194728e5e754ef7bc764030e140cea - 3.95% (2.67 MB)
[#001] sha256:8392b19747a95c5f0945f923608970a15320af8654f0a299a0fc345f7d2aa926 - 0.0% (1.22 KB)
[#002] sha256:ae408abf9c34442cb63539f6995aa2f7a7f934c7671d59879da83a8a0d936c6d - 0.0% (115 Bytes)
[#003] sha256:47c4a28307fc51ef32aca7e0256bc157dd83bf552c1a5618bfe1e5937cf2db9f - 82.84% (56 MB)
[#004] sha256:7e39140439913c5ee6d62199bc37338f02ad6f582ebc0f857d24600d969f6710 - 0.01% (8.02 KB)
[#005] sha256:f64e51a82d10a441cd5432fe9fbd6e4486d6df087081a0f0c3c00573821879af - 0.0% (128 Bytes)
[#006] sha256:2ceaa4d24e193d4c327e7419e46c00cfe0ef57be2fe8ad36c53a06c586adaa6d - 0.0% (164 Bytes)
[#007] sha256:5ab084fe1ea0b8c2c97f59c63a3fbbba0155bb2b354d5395ff6a673d77e2156e - 0.01% (4.29 KB)
[#008] sha256:d70a2caf4d7eca8120d0d7f9ce1ce4fc139156e4fde28fa0265b1ad0fabf73fe - 0.0% (2 KB)
[#009] sha256:cc72ed4a4ba4a3f0aa91179e8b512667ccdbdb342e58da34665c03c9e70c1e70 - 8.28% (5.6 MB)
[#010] sha256:c68fd0c61a0a7590466ea9907896604e9fce9ba58480c1fd5305fd84fe128f63 - 3.12% (2.11 MB)
[#011] sha256:b93779042292e57be695f2d54b03439a0e9de12e15e887bc3666261cb83a2b59 - 0.26% (181 KB)
[#012] sha256:c08f467421114bdf4127c230156950cbbf6ebcc092cd50f5777f9cc35996204c - 1.52% (1.03 MB)
/bin/sh -c #(nop) ADD file:ec475c2abb2d46435286b5ae5efacf5b50b1a9e3b6293b69db3c0172b5b9658b in /
2020-12-17 00:19:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-12-17 00:59:48 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-12-17 00:59:49 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-12-17 00:59:50 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-12-17 01:07:43 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-12-17 01:07:44 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.5
2020-12-17 01:07:44 UTC/bin/sh -c #(nop) ENV PG_SHA256=bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
2020-12-17 01:14: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-12-17 01:14:37 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-12-17 01:14:38 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-12-17 01:14:38 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-12-17 01:14:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-12-17 01:14:40 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-12-30 01:22:26 UTC/bin/sh -c #(nop) COPY file:f937c0ee3ab8736d7adeefe3108ce546c352d85751a620058fb9427c3648a82c in /usr/local/bin/
2020-12-30 01:22:26 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-12-30 01:22:26 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-12-30 01:22:26 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-12-30 01:22:27 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-01-04 18:45:15 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-01-04 18:45:16 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-01-04 18:45:16 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-01-04 18:46: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 -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
2021-01-04 18:53:19 UTC
65.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
[#000] sha256:93247449aef3c56eb4f7ab7b3fed95743c974b823def6dd86ec84008126e7903 - 3.79% (2.48 MB)
[#001] sha256:c8281cbd4bde01cbf0ed0e8ecf5550798d848c1d7d2d642a0416759d8df635f3 - 0.0% (1.25 KB)
[#002] sha256:eae834cabab68fcc6ee1f251914773d8111eba34640f8849961845844a4f4681 - 0.0% (147 Bytes)
[#003] sha256:94ee3946e1b14118f46f9caa5792d044e45400f80b2fc7d17a97531f78b9f144 - 83.2% (54.5 MB)
[#004] sha256:69d3f28f62712e489734b7685b75d37373005e16249673996c336f75ffcf2e37 - 0.01% (8.02 KB)
[#005] sha256:52ec9bc11b92f83b75189a71d0fdaf5cfe2625f3727a51dab6f547b0943e3ade - 0.0% (161 Bytes)
[#006] sha256:1f81606619864685a37a5c8d493691ae6606e6810d70c7685f842eaf9e784eca - 0.0% (195 Bytes)
[#007] sha256:1425268980731d786b05be0d1f9a56237eb3dbfbc15897d91f3bdbb1c434d139 - 0.01% (4.29 KB)
[#008] sha256:d70a2caf4d7eca8120d0d7f9ce1ce4fc139156e4fde28fa0265b1ad0fabf73fe - 0.0% (2 KB)
[#009] sha256:406491154ca1f2c8aae3b3f3bd3d2857c9f1343acf5dc04610ddf5ad92c30daf - 8.1% (5.31 MB)
[#010] sha256:f027488f56cbfffa0a4b7c99dfc2036a1abb5f6ac43be46b8d70ed47b1b72b3c - 3.06% (2 MB)
[#011] sha256:d581922b4c2f5e1c8e21bd1fd149f35c6fb5d9d5aa86976639a0f3fcaae55b17 - 0.27% (181 KB)
[#012] sha256:0c50d1ba3571bec8273aff94a5ecf42898c40fd8350d734339bbf5213eb20f48 - 1.56% (1.02 MB)
/bin/sh -c #(nop) ADD file:0a16715e2d0e5811c3c578945d618db0e269847a799340248f9ba8d393c9eec2 in /
2020-12-16 23:49:45 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-12-17 05:45:15 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-12-17 05:45:16 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-12-17 05:45:18 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-12-17 05:50:37 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-12-17 05:50:39 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.5
2020-12-17 05:50:40 UTC/bin/sh -c #(nop) ENV PG_SHA256=bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
2020-12-17 05:55:01 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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-12-17 05:55:05 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-12-17 05:55:07 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-12-17 05:55:08 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-12-17 05:55:11 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-12-17 05:55:12 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-12-30 00:55:08 UTC/bin/sh -c #(nop) COPY file:f937c0ee3ab8736d7adeefe3108ce546c352d85751a620058fb9427c3648a82c in /usr/local/bin/
2020-12-30 00:55:08 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-12-30 00:55:09 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-12-30 00:55:10 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-12-30 00:55:10 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-01-04 18:47:30 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-01-04 18:47:30 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-01-04 18:47:30 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-01-04 18:53:19 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 -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
2021-01-04 18:53:00 UTC
62.6 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
[#000] sha256:c58e8a26a8407acc3ead776f6526efa889fda03270a8d05109208d9f59159420 - 3.67% (2.3 MB)
[#001] sha256:81fd93cc6a1e39bdb8121ae35ee402c25416b317da7efd7e27a38a4af80710b7 - 0.0% (1.25 KB)
[#002] sha256:a9fc827812b79452d91ced463793937316b84ae0d091f1be8f633999b998bf4b - 0.0% (149 Bytes)
[#003] sha256:fdd53e87812e9495e0af28503a9bbbd86872047bb29a15ca57da39bbea4f35ec - 82.98% (51.9 MB)
[#004] sha256:df0f44c46aaf1dc95a159b360c97457c746764bbf07308eda0c45c75386bf85f - 0.01% (8.02 KB)
[#005] sha256:f0bd795650194138c943cf4c2f105529bf90a5d2af42ae8ce28ed262fa5dc296 - 0.0% (162 Bytes)
[#006] sha256:bf836abdd6a5d6bddfb9e1fb774d0dff1e2b0a984aab806a9b082354f15bbd48 - 0.0% (195 Bytes)
[#007] sha256:d90b728d4ee31f2a99cba9d78dd3f97407b43649926dd89d0a5b9238c8510478 - 0.01% (4.29 KB)
[#008] sha256:2e050c9754befce02ba2cd436f5392fd1e30751e8f3a7d3a268ca7ad6c07e4f6 - 0.0% (2.01 KB)
[#009] sha256:f2915b5433b08abb3a2fbe72c32b65f88e32f3bbfccf70be6956cbc1435908d3 - 8.47% (5.3 MB)
[#010] sha256:8471a9e0e0a938cca341ca0cbe4786a00262df614f12a09263e2a498e912c629 - 2.97% (1.86 MB)
[#011] sha256:c6b3c1b7067f019e81673de5f24ae28fdb33bc9bb3c226a14b912cbbd54805f5 - 0.28% (181 KB)
[#012] sha256:1ca5b767d2e4c7dadbf7da2631d396941db5b4162def5e26412b574e822c9fb5 - 1.6% (1 MB)
/bin/sh -c #(nop) ADD file:bd07f77a2b2741ca6bda80d9203be9c7274cf73145bff778cf000db0d8d4e903 in /
2020-12-16 23:58:15 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-12-17 05:35:59 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-12-17 05:36:01 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-12-17 05:36:05 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-12-17 05:39:51 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-12-17 05:39:52 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.5
2020-12-17 05:39:53 UTC/bin/sh -c #(nop) ENV PG_SHA256=bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
2020-12-17 05:42:48 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-12-17 05:42:50 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-12-17 05:42:52 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-12-17 05:42:53 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-12-17 05:42:55 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-12-17 05:42:56 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-12-30 01:02:07 UTC/bin/sh -c #(nop) COPY file:f937c0ee3ab8736d7adeefe3108ce546c352d85751a620058fb9427c3648a82c in /usr/local/bin/
2020-12-30 01:02:08 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-12-30 01:02:08 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-12-30 01:02:09 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-12-30 01:02:10 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-01-04 18:46:56 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-01-04 18:46:56 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-01-04 18:46:56 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-01-04 18:53:00 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 -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
2021-01-04 18:53:05 UTC
66.8 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
[#000] sha256:159e5727ea618dfe8b08811112e2c51f5bd2b9ae7db9eb214914a65249f70ca0 - 3.87% (2.58 MB)
[#001] sha256:d20223af9aac4511a0a9a78463ff758585620e621be0678319eba90176b7e615 - 0.0% (1.25 KB)
[#002] sha256:2482f57ac4ab8ff038d0589f0507eea54d56adf3da98ff95df25c6beb575c1e4 - 0.0% (148 Bytes)
[#003] sha256:f3b1070dc40ee338bd6257ddfa0d2d403e8c59d1e93e912398459f8b3bdbbfa7 - 83.31% (55.6 MB)
[#004] sha256:c135f1cdc71946c0716d2d7a287fb3af839f7a9e3d36a27ec78f56c66b54bbe6 - 0.01% (8.02 KB)
[#005] sha256:4960e60c6080d84c754535b97a8a5e332d1d216a89ae97551f187d04a94777f7 - 0.0% (161 Bytes)
[#006] sha256:8fdd3497cfd7214469427ad6b1dac72dbfcb2eaeb51006ae8f38048ef7fb421f - 0.0% (192 Bytes)
[#007] sha256:74eac3f07a62a18f58b8314da858419b34d5fb43618a78a256d1203f69db3aa8 - 0.01% (4.29 KB)
[#008] sha256:d70a2caf4d7eca8120d0d7f9ce1ce4fc139156e4fde28fa0265b1ad0fabf73fe - 0.0% (2 KB)
[#009] sha256:06b01578d881e234c7adff75daf309bc832a92cc4722a1476da5eb5e8fb241e9 - 7.89% (5.27 MB)
[#010] sha256:c9f79a83f3700abf93d2e54ec975fb1ac86456d7559c6d22b28af5b548da2a18 - 3.1% (2.07 MB)
[#011] sha256:671be2d5c75150666acccf028c281b8a0df10e40e16fcb332636fafc300b6372 - 0.26% (181 KB)
[#012] sha256:fe34dcc946e0389a3538e85fdb804639ff0deec30bae576fa1c6823ee474c989 - 1.53% (1.02 MB)
/bin/sh -c #(nop) ADD file:a4845c3840a3fd0e41e4635a179cce20c81afc6c02e34e3fd5bd2d535698918b in /
2020-12-16 23:40:29 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-12-17 04:01:11 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-12-17 04:01:19 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-12-17 04:01:28 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-12-17 04:06:22 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-12-17 04:06:23 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.5
2020-12-17 04:06:24 UTC/bin/sh -c #(nop) ENV PG_SHA256=bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
2020-12-17 04:09:56 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-12-17 04:10:01 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-12-17 04:10:04 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-12-17 04:10:05 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-12-17 04:10:09 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-12-17 04:10:10 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-12-30 00:43:19 UTC/bin/sh -c #(nop) COPY file:f937c0ee3ab8736d7adeefe3108ce546c352d85751a620058fb9427c3648a82c in /usr/local/bin/
2020-12-30 00:43:21 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-12-30 00:43:25 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-12-30 00:43:27 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-12-30 00:43:28 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0
2021-01-04 18:44:53 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-01-04 18:47:03 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-01-04 18:47:03 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-01-04 18:47:03 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-01-04 18:53:05 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 -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.