2020-10-29 13:12:07 UTC
70.3 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA25635618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635
PG_VERSION11.9
TIMESCALEDB_VERSION2.0.0-rc2
[#000] sha256:d6ca64ac6f4b6382142ce9a3501652938130a6ec4bb02f3f455ee1f980834cfe - 3.79% (2.66 MB)
[#001] sha256:596122efb908f979efd1794c09ae9c7a15ac0e4d53f2c181fd646d9f32565d9a - 0.0% (1.22 KB)
[#002] sha256:feeb7bd791d51cd161cadd22b53bd066e70998ebd55dd5ba92760d35f1ab9e8b - 0.0% (113 Bytes)
[#003] sha256:71596638f4cb5ee55cb116399fdb509d66c3149edddf1f094c943180fea0152b - 82.7% (58.1 MB)
[#004] sha256:0f3fbbc039d845be147cf1e8ade909c608fce49f780fc305499335342af47da3 - 0.01% (7.39 KB)
[#005] sha256:3286005b39b93266d34cf1832ade3eb57c05f145665df52bbef3ca0e2a0ed8cf - 0.0% (130 Bytes)
[#006] sha256:e598e131dae5e6c554323fe4a1e359fa80c0aced1efed1a3ddbd185cec28b0d4 - 0.0% (165 Bytes)
[#007] sha256:94e4b7f4fcd7fbb1c3422e9ab1130b63d9c872177a9b6baec8d0d75f7e4b81b1 - 0.01% (4.16 KB)
[#008] sha256:2c3e67d5de4f44cadd77e74959c6283063ff9be8208dd89011b87431c5c0e165 - 0.0% (121 Bytes)
[#009] sha256:739a99134b52794a3648cdf7a66c7e04b6fe7f25a7e6f9028bf5a325761f5c15 - 0.0% (2.05 KB)
[#010] sha256:47405c09e96750e7f4f013d7650a54601e5e087276dd736b3cce4066d6088c66 - 7.88% (5.53 MB)
[#011] sha256:dfef625d4536b0d8771055563a70f16f1778da1ef9c5f3658d5e14d4114d73b7 - 3.66% (2.57 MB)
[#012] sha256:72355bfa49bc0dd2b04e1b61711df320d2c86f67bddb28ad419ab27ae275c589 - 0.16% (117 KB)
[#013] sha256:2cb6dfb7896827a445f3c3668e31006f696cb86da4e9d7ba04d40f26460da6d7 - 1.79% (1.26 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:56:33 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-10-22 09:56:33 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.9
2020-10-22 09:56:33 UTC/bin/sh -c #(nop) ENV PG_SHA256=35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635
2020-10-22 10:05:14 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-10-22 10:05:15 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-10-22 10:05:16 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-10-22 10:05:16 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-10-22 10:05:17 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-10-22 10:05:17 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-10-22 10:05:17 UTC/bin/sh -c #(nop) COPY file:8f542efd076b9b67ef64928f3c0185ed50bfcbbc3572436a7222e879810d747f in /usr/local/bin/
2020-10-22 10:05:18 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-10-22 10:05:18 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-10-22 10:05:18 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-10-22 10:05:18 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-10-22 10:05:19 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0-rc2
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-10-29 13:09:37 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-10-29 13:09:37 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-10-29 13:09:37 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-10-29 13:12:07 UTC (buildkit.dockerfile.v0)RUN |1 OSS_ONLY= /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-10-29 13:11:54 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_MAJOR11
PG_SHA25635618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635
PG_VERSION11.9
TIMESCALEDB_VERSION2.0.0-rc2
[#000] sha256:188c0c94c7c576fff0792aca7ec73d67a2f7f4cb3a6e53a84559337260b36964 - 4.0% (2.67 MB)
[#001] sha256:56f1d1b70e7fa650fd6229086120f763219adce9e33e8b20bdfbf8452ab69847 - 0.0% (1.22 KB)
[#002] sha256:9b4f01476d2b86761cdb0414c4a583b89af3b5d0b67022cfc0d378743307f7e3 - 0.0% (115 Bytes)
[#003] sha256:d058ff3c2e76b5b2b73fe978d13098a08147a1ab7a3626aaf9ad2a517063ac4d - 82.23% (54.8 MB)
[#004] sha256:a78813ef71e2f8248d9cef38ce7fe0eca079e0e68c4c583d6260740ae187581a - 0.01% (7.39 KB)
[#005] sha256:995bee851f84b1ea98efd4d182c4e647ff1130f196ca28f21cf85c910549ff1b - 0.0% (129 Bytes)
[#006] sha256:a09fcc1822869a254dbc7ef4f85dbecb2221d373edfe1510d7a7bd89b43d4507 - 0.0% (164 Bytes)
[#007] sha256:779826b7296000ccf24486a5877f8f0f55a7f3bc61fa1d3549b4ca43c12d7bed - 0.01% (4.16 KB)
[#008] sha256:7019d6614cc2989650b8c2d6c20716e6bb45b449f457c92c71e1fc7157d9161c - 0.0% (121 Bytes)
[#009] sha256:7398642ce7b09b2d515a78b7c692a0d7b9ef755f53558887c3993c301e3e9934 - 0.0% (2.05 KB)
[#010] sha256:8d7b897c4f1dc4314ad670978ea903616ff3b832192b39cec7a7e6c6499ac523 - 8.39% (5.6 MB)
[#011] sha256:74de02d60a0ccc7bc83361e9d0c87fc63506352b53d313e04c3d23b8b5454591 - 3.39% (2.26 MB)
[#012] sha256:4fb22f5b4b3caec7b4e259464e43d11f3b5daf28bed953b2a7fa5e220164c0f7 - 0.17% (117 KB)
[#013] sha256:f582ee62945ea0a0ea5d4a4baee17456cd03428a5fbc3b00309b4f1ee26e1435 - 1.79% (1.19 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:06:44 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-10-22 08:06:44 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.9
2020-10-22 08:06:44 UTC/bin/sh -c #(nop) ENV PG_SHA256=35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635
2020-10-22 08:11:59 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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-10-22 08:12:00 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-10-22 08:12:01 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-10-22 08:12:01 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-10-22 08:12:02 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-10-22 08:12:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-10-22 08:12:02 UTC/bin/sh -c #(nop) COPY file:8f542efd076b9b67ef64928f3c0185ed50bfcbbc3572436a7222e879810d747f in /usr/local/bin/
2020-10-22 08:12:03 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-10-22 08:12:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-10-22 08:12:03 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-10-22 08:12:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-10-22 08:12:04 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0-rc2
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-10-29 13:09:36 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-10-29 13:09:36 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-10-29 13:09:36 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-10-29 13:11:54 UTC (buildkit.dockerfile.v0)RUN |1 OSS_ONLY= /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-10-29 13:26:07 UTC
64.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA25635618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635
PG_VERSION11.9
TIMESCALEDB_VERSION2.0.0-rc2
[#000] sha256:bad30e7b45c14f784ef29a828b5fc69db0ebdefebcde6a7c98f4f77ffc93a546 - 3.84% (2.48 MB)
[#001] sha256:c54bc8a79538fa79db3e734327f2a73654bc80285dc55b7e4d8d206161ec79a9 - 0.0% (1.25 KB)
[#002] sha256:30574d1822b9e42c2a6da5e4a8f52ab65d88be941e497b4565382967ebd326f8 - 0.0% (149 Bytes)
[#003] sha256:c0c75827a5b01990441c306c995d7fcda9425c0bade77bbf0c66825580af0273 - 82.52% (53.3 MB)
[#004] sha256:738b7fda4e13330b340ba0fbd9aa4911c7260abe0650464553a0010585f70c33 - 0.01% (7.39 KB)
[#005] sha256:7e3b5dd01c49e1c24b40bcdd9903fd8376ad5a564e53d4f1652917c90907533e - 0.0% (161 Bytes)
[#006] sha256:f94dffc034c095018d0104caabd5eb6de495c82851ad8ea41d416e94ea4a3994 - 0.0% (195 Bytes)
[#007] sha256:f56588f7e97f957dc6dbe292261447a7f660b7275f367a710fcacde53926f8e4 - 0.01% (4.16 KB)
[#008] sha256:8578c7dc3e8da1e729ad0ea6deb3919c7a835d131b1e30527e8cfd7c8c49125a - 0.0% (121 Bytes)
[#009] sha256:a179475ccd31645f95097e9f31530ac92db0dcd20248412e4c49da39bdc3fde2 - 0.0% (2.05 KB)
[#010] sha256:c52634fe47d4ae41199f8b33349360a3b6b0ad2b00717448743f3862e8c49469 - 8.22% (5.3 MB)
[#011] sha256:b02afdbe04adaae87b197fe914bc6fd9b880e537f171f0243a80060a6cabb806 - 3.4% (2.2 MB)
[#012] sha256:c1e1605ea2795aa00aa0222bc7098996b6db6b53999d66f749a6f8f04a017daf - 0.18% (117 KB)
[#013] sha256:5e07c968941998495eed82450c527e0f247dd44aa70a367e9c92faa33df9340a - 1.82% (1.17 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:04:59 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-10-22 09:05:00 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.9
2020-10-22 09:05:02 UTC/bin/sh -c #(nop) ENV PG_SHA256=35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635
2020-10-22 09:09:13 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-10-22 09:09:16 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-10-22 09:09:18 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-10-22 09:09:18 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-10-22 09:09:20 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-10-22 09:09:21 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-10-22 09:09:21 UTC/bin/sh -c #(nop) COPY file:8f542efd076b9b67ef64928f3c0185ed50bfcbbc3572436a7222e879810d747f in /usr/local/bin/
2020-10-22 09:09:23 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-10-22 09:09:23 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-10-22 09:09:24 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-10-22 09:09:25 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-10-22 09:09:27 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0-rc2
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-10-29 13:13:03 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-10-29 13:13:04 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-10-29 13:13:04 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-10-29 13:26:07 UTC (buildkit.dockerfile.v0)RUN |1 OSS_ONLY= /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-10-29 13:25:39 UTC
61.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA25635618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635
PG_VERSION11.9
TIMESCALEDB_VERSION2.0.0-rc2
[#000] sha256:5f2023fd85a4e68f37fe41421fd89f30e69b98a645613521c57c01317561eee3 - 3.72% (2.29 MB)
[#001] sha256:0e7eedf40b1ca3ca0c12781ef9399626d49e7898eb4dc6bf3888a3add86c9ee2 - 0.0% (1.25 KB)
[#002] sha256:dc2cc4a27e16f2350721162545664e1c967b92e8a0ecffb90828c979f0bc3ac6 - 0.0% (147 Bytes)
[#003] sha256:8744965d85a887a1a7a3dced6f0202ead4d55efa0b7588528f7735586c3b5683 - 82.36% (50.8 MB)
[#004] sha256:45a06383560e1db5eac489179766919bc67da0f176d9160c272b1146b7278e8d - 0.01% (7.4 KB)
[#005] sha256:4be62bea1696e58983b8d9c43c605c50a423c6bbc40813ab47fc5fb0d67a9cc5 - 0.0% (163 Bytes)
[#006] sha256:e9d0d783ebbf14db0c1817b13cf9e9f9f9a7755c4621234da376fa849860282d - 0.0% (195 Bytes)
[#007] sha256:94f2fe42f6b532ccae3c1aee2136e59777b73fcb03fae56366c0c14398bbdb2b - 0.01% (4.16 KB)
[#008] sha256:29147edddff1f66375d08dc6df6c1681e26699760f8e37dbae1ff786e5615d54 - 0.0% (121 Bytes)
[#009] sha256:9e9b48c7ba9fefb67c7a4c944ec3c1edc068ff6c5415a14efa83df185d4e51b8 - 0.0% (2.05 KB)
[#010] sha256:4fe6572ba20acd84911e165bc3b3f28553bbfad8ce23b494c27c26dbe85b3427 - 8.59% (5.3 MB)
[#011] sha256:93dfd8c5328a523420940184d588dafb4f013f6a4634f88164b095dbf4daa5f7 - 3.27% (2.02 MB)
[#012] sha256:05c9446ba10eba423743841cad3d62ef441fc79d39d175fd47587aada2f2e08a - 0.18% (117 KB)
[#013] sha256:3642a74afcca07535ad616fb1d06ef5355982b336ccf3a6117260eb3a28c9c73 - 1.84% (1.13 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:04:07 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-10-22 09:04:08 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.9
2020-10-22 09:04:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635
2020-10-22 09:07:17 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-10-22 09:07:20 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-10-22 09:07:22 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-10-22 09:07:23 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-10-22 09:07:25 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-10-22 09:07:26 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-10-22 09:07:27 UTC/bin/sh -c #(nop) COPY file:8f542efd076b9b67ef64928f3c0185ed50bfcbbc3572436a7222e879810d747f in /usr/local/bin/
2020-10-22 09:07:28 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-10-22 09:07:29 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-10-22 09:07:30 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-10-22 09:07:30 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-10-22 09:07:31 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0-rc2
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-10-29 13:12:07 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-10-29 13:12:07 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-10-29 13:12:07 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-10-29 13:25:39 UTC (buildkit.dockerfile.v0)RUN |1 OSS_ONLY= /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-10-29 13:25:47 UTC
65.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR11
PG_SHA25635618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635
PG_VERSION11.9
TIMESCALEDB_VERSION2.0.0-rc2
[#000] sha256:5f621e34cdf485f410766dc9a0fc7855d17916d0f6583b58cbdce7c28831f527 - 3.92% (2.58 MB)
[#001] sha256:b46b3b77440641e62ecc741cdb44f0f558d15c3f3b6d506be26f8c285f7a36ff - 0.0% (1.25 KB)
[#002] sha256:b85615d5b5e22de086f665265885eae6f4cb41a63e5ed6910df6d0d03d0e90c5 - 0.0% (149 Bytes)
[#003] sha256:94e62537e567035c5999657615bd736409c64f41e942b3f87e615c66ae52a8cb - 82.74% (54.5 MB)
[#004] sha256:f23fb5551ecc716a44734ad6358e1e78e7e79c98a3a9f96de760c29cb33890c5 - 0.01% (7.4 KB)
[#005] sha256:7baa45aa7871810c573597f945354762e83b06811f6d056d0ab88464a510059b - 0.0% (161 Bytes)
[#006] sha256:cc4f31d3813ec635ab947d8920d2f5c647368804aaa6daf6534a2c760881cf88 - 0.0% (197 Bytes)
[#007] sha256:bda57f6651ce34adfa7b1c188d1d9db8089308598f50a74690d4c7ece8abc5db - 0.01% (4.16 KB)
[#008] sha256:8953d6050ea0981260cd058299c4cdf3393cbec496c99879bd52cbcfb9702ae9 - 0.0% (121 Bytes)
[#009] sha256:dadb37eea9ef7e3cf151c65c200a7f749e7cb44f7ae6134c63cfbf09b1195c96 - 0.0% (2.05 KB)
[#010] sha256:963d1f5a2e117fc3a7415c7f69d72b1f062faae7cb263ba6f17123aa7c983bae - 8.0% (5.27 MB)
[#011] sha256:1a81421736d1096a98a47f9b2fac1b224ebd389e7139d986ed16c84f711e66cd - 3.35% (2.21 MB)
[#012] sha256:81643d2ca2a6da6d72726ed9ecffc84188c984921ccfd73bbd4ecb18d8691c22 - 0.17% (117 KB)
[#013] sha256:a14df6fb65b85fedd31e82c4b7f60d488f6aac98afe74f55eecda6804afe0278 - 1.79% (1.18 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:30:28 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-10-22 08:30:30 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.9
2020-10-22 08:30:31 UTC/bin/sh -c #(nop) ENV PG_SHA256=35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635
2020-10-22 08:33:41 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-10-22 08:33:45 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-10-22 08:33:46 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-10-22 08:33:47 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-10-22 08:33:49 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-10-22 08:33:49 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-10-22 08:33:50 UTC/bin/sh -c #(nop) COPY file:8f542efd076b9b67ef64928f3c0185ed50bfcbbc3572436a7222e879810d747f in /usr/local/bin/
2020-10-22 08:33:52 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-10-22 08:33:53 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-10-22 08:33:53 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-10-22 08:33:54 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-10-22 08:33:57 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0-rc2
2020-10-29 13:09:04 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-10-29 13:12:15 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-10-29 13:12:15 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-10-29 13:12:15 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-10-29 13:25:47 UTC (buildkit.dockerfile.v0)RUN |1 OSS_ONLY= /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.