2021-01-04 18:46:47 UTC
70 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_SHA25613e6d2f80662fe463bc7718cdf0de6a9ec67fc78afcc7a3ae66b9ea19bb97899
PG_VERSION11.10
TIMESCALEDB_VERSION2.0.0
[#000] sha256:455793c72b878001f0905634ed52a2524ba51796e7377bf00683a85123f7dce9 - 3.81% (2.66 MB)
[#001] sha256:5305178ae8cb85c448e0963870f5425a527c36dae59155568c8da341f4173b82 - 0.0% (1.22 KB)
[#002] sha256:5f3614159f507682c618782d96e8e35ed8b175b4dff44e39ef793184e39ba180 - 0.0% (115 Bytes)
[#003] sha256:a825c594b28767c71652f553a392be970b8ee6529d5e277edd7b35a211b26dbe - 83.18% (58.2 MB)
[#004] sha256:076e1e6161de63398257c999aafcc813df92b178420b86d9589c7de92968f106 - 0.01% (7.39 KB)
[#005] sha256:9c043e5c1a10c309bcf6962968c98112fb6e288dc1bed8090a04ad1da36ff5c8 - 0.0% (129 Bytes)
[#006] sha256:03f0b62235b33bc2a8789dfc1678871344f4f642d74aa778db987024e76665b9 - 0.0% (162 Bytes)
[#007] sha256:1baec4b3f74936b972c01527b8925ba8545168826598ad3e0897c7fd68775e23 - 0.01% (4.29 KB)
[#008] sha256:14cd5f68ab9ffc026fc1db9c7a29e3b580129d0e45351ef3bcf7f118a8283ab6 - 0.0% (121 Bytes)
[#009] sha256:9580d1d360a679a0923a4d11690d2423bdbfe01494f06932b65e9a4e36952fd5 - 0.0% (2 KB)
[#010] sha256:3ec88681e54c7917eaedd16d0ec66ce3341e58264bba5e8957e7e4234b51f40e - 7.91% (5.54 MB)
[#011] sha256:0083953ea43b125ef405f8bfdd5f575284170078c2670b89d7f80f6c2d5aec08 - 3.36% (2.35 MB)
[#012] sha256:53adac7374d08293c2ea632f4e4eda4f70d213e5cd9c3d5aef4fd0f3dac500a5 - 0.25% (181 KB)
[#013] sha256:e761d9ff9f61c8275b60e540bb77a875e3638dc2d5240ce3949ae1a4731ba9fe - 1.47% (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 06:01:55 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-12-17 06:01:55 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.10
2020-12-17 06:01:56 UTC/bin/sh -c #(nop) ENV PG_SHA256=13e6d2f80662fe463bc7718cdf0de6a9ec67fc78afcc7a3ae66b9ea19bb97899
2020-12-18 20:41:23 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc 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:41:23 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-12-18 20:41:24 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:41:25 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-12-18 20:41:25 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-12-18 20:41:25 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-12-30 00:41:33 UTC/bin/sh -c #(nop) COPY file:f937c0ee3ab8736d7adeefe3108ce546c352d85751a620058fb9427c3648a82c in /usr/local/bin/
2020-12-30 00:41:33 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-12-30 00:41:34 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-12-30 00:41:34 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-12-30 00:41:34 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-12-30 00:41:34 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-01-04 18:45:22 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-01-04 18:45:22 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-01-04 18:45:22 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-01-04 18:46:47 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:34 UTC
66.5 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_SHA25613e6d2f80662fe463bc7718cdf0de6a9ec67fc78afcc7a3ae66b9ea19bb97899
PG_VERSION11.10
TIMESCALEDB_VERSION2.0.0
[#000] sha256:801bfaa63ef2094d770c809815b9e2b9c1194728e5e754ef7bc764030e140cea - 4.01% (2.67 MB)
[#001] sha256:8392b19747a95c5f0945f923608970a15320af8654f0a299a0fc345f7d2aa926 - 0.0% (1.22 KB)
[#002] sha256:ae408abf9c34442cb63539f6995aa2f7a7f934c7671d59879da83a8a0d936c6d - 0.0% (115 Bytes)
[#003] sha256:8cddbfe5a8f20077ba05651335409f6564e5c480c96c1054ae981ec63e4cdf82 - 82.61% (54.9 MB)
[#004] sha256:abb1cde08c525de9d0847b355e1f40590e37e765c5a0f34ff0cf469b5a3c2c49 - 0.01% (7.4 KB)
[#005] sha256:42bb9bfce287f881b22b4ce204bf34206223a4e86588cd2aba4124b1271c07f8 - 0.0% (129 Bytes)
[#006] sha256:7d6cf146ed5f9b5a73263a84d0acb6f1b82ff44e38c9ada7c88e5e42e7c9a686 - 0.0% (164 Bytes)
[#007] sha256:d0347d10643be5056ef10f8ac470ebe6e1fafecd630a862bc078ac7c0c105a6a - 0.01% (4.29 KB)
[#008] sha256:f33191668083be3bad6ff426773e6637b973ba39f2501b251376d1c60739a15e - 0.0% (121 Bytes)
[#009] sha256:9580d1d360a679a0923a4d11690d2423bdbfe01494f06932b65e9a4e36952fd5 - 0.0% (2 KB)
[#010] sha256:0620f829217352b11f77d04c917c2d67d9c55351f19550a62fa67b251704fe59 - 8.41% (5.6 MB)
[#011] sha256:3c2ebfb5a4c0acac393fc3bdcb3c2f1a6fbd55e4d3a72bb4ccad2179b20122fe - 3.13% (2.08 MB)
[#012] sha256:d656379dc019141796c3a8787a4ceeef01b407ae442b0a842464692f33406be9 - 0.27% (181 KB)
[#013] sha256:a170b63fd79bbfa2addc5f918e74e8d6b8516d706fb413d95f2991df12153af1 - 1.54% (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:14:53 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-12-17 01:14:53 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.10
2020-12-17 01:14:53 UTC/bin/sh -c #(nop) ENV PG_SHA256=13e6d2f80662fe463bc7718cdf0de6a9ec67fc78afcc7a3ae66b9ea19bb97899
2020-12-17 01:21:38 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:21:39 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-12-17 01:21:40 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:21:40 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-12-17 01:21:41 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-12-17 01:21:42 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-12-30 01:22:37 UTC/bin/sh -c #(nop) COPY file:f937c0ee3ab8736d7adeefe3108ce546c352d85751a620058fb9427c3648a82c in /usr/local/bin/
2020-12-30 01:22:38 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-12-30 01:22:38 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-12-30 01:22:39 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-12-30 01:22:39 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-12-30 01:22:39 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-01-04 18:45:17 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-01-04 18:45:17 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-01-04 18:45:17 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-01-04 18:46:34 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:54:56 UTC
64.4 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_SHA25613e6d2f80662fe463bc7718cdf0de6a9ec67fc78afcc7a3ae66b9ea19bb97899
PG_VERSION11.10
TIMESCALEDB_VERSION2.0.0
[#000] sha256:93247449aef3c56eb4f7ab7b3fed95743c974b823def6dd86ec84008126e7903 - 3.86% (2.48 MB)
[#001] sha256:c8281cbd4bde01cbf0ed0e8ecf5550798d848c1d7d2d642a0416759d8df635f3 - 0.0% (1.25 KB)
[#002] sha256:eae834cabab68fcc6ee1f251914773d8111eba34640f8849961845844a4f4681 - 0.0% (147 Bytes)
[#003] sha256:8b95c4f617198a291063111484478b90a92bdf6f6180ceba16d342cf49d8597d - 82.95% (53.4 MB)
[#004] sha256:1adaffeba6e3fca630411814ad04cc049275ff7bf9152e97763e522964c35614 - 0.01% (7.39 KB)
[#005] sha256:133d8abf224d1f0b5102ef2a048ab34c0a44ff7db0ac32600230495c9568ee03 - 0.0% (161 Bytes)
[#006] sha256:01988850c92a3b6ca9d10b9f47b8d58bb4ebc717516786bf2c838784a556b650 - 0.0% (193 Bytes)
[#007] sha256:b7d446093461317a051876c8424a01f7df20a421433d630b2a66108e0f6f3ed9 - 0.01% (4.29 KB)
[#008] sha256:4e74b59d01a9080e98aa483a28a4a36dadb499a7251995c2d95a4105f7d62cae - 0.0% (118 Bytes)
[#009] sha256:9580d1d360a679a0923a4d11690d2423bdbfe01494f06932b65e9a4e36952fd5 - 0.0% (2 KB)
[#010] sha256:1ec4facd1f5392da8d68411e19ec1ad408acc0da62cecd3f24f8415d19613b2f - 8.24% (5.31 MB)
[#011] sha256:aba0560107b75c2e4d75c62e0a0d6345d5e150401d72a3f5aa45002c2182b863 - 3.07% (1.98 MB)
[#012] sha256:ccf7656e3082bbbe7fd4a8edac2168a043557abdd7d2cac9ceb9d775372a16a4 - 0.27% (181 KB)
[#013] sha256:2a10f3e5cf2f6d22f32de878694d1e45c7cdd2d192ff2caa4849acdf3fc34f2b - 1.58% (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:55:30 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-12-17 05:55:31 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.10
2020-12-17 05:55:31 UTC/bin/sh -c #(nop) ENV PG_SHA256=13e6d2f80662fe463bc7718cdf0de6a9ec67fc78afcc7a3ae66b9ea19bb97899
2020-12-17 05:59:49 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:59:52 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-12-17 05:59:54 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:59:54 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-12-17 05:59:56 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-12-17 05:59:57 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-12-30 00:55:16 UTC/bin/sh -c #(nop) COPY file:f937c0ee3ab8736d7adeefe3108ce546c352d85751a620058fb9427c3648a82c in /usr/local/bin/
2020-12-30 00:55:18 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-12-30 00:55:20 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-12-30 00:55:21 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-12-30 00:55:23 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-12-30 00:55:25 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-01-04 18:48:08 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-01-04 18:48:08 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-01-04 18:48:08 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-01-04 18:54:56 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:54:33 UTC
61.5 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_SHA25613e6d2f80662fe463bc7718cdf0de6a9ec67fc78afcc7a3ae66b9ea19bb97899
PG_VERSION11.10
TIMESCALEDB_VERSION2.0.0
[#000] sha256:c58e8a26a8407acc3ead776f6526efa889fda03270a8d05109208d9f59159420 - 3.73% (2.3 MB)
[#001] sha256:81fd93cc6a1e39bdb8121ae35ee402c25416b317da7efd7e27a38a4af80710b7 - 0.0% (1.25 KB)
[#002] sha256:a9fc827812b79452d91ced463793937316b84ae0d091f1be8f633999b998bf4b - 0.0% (149 Bytes)
[#003] sha256:8ffc81d1ff38255e5015c0dbdf68d857ec0950c90ace7ee0d8a7f467cfc38056 - 82.73% (50.9 MB)
[#004] sha256:bf8bfa1df461c9652d0ee413b7e5d67a97cc5a97cbad9ab325073d4b941ed525 - 0.01% (7.4 KB)
[#005] sha256:d15df3b81f4b5bae099daac17eec8172e72eddc93ec5771019472f167c939891 - 0.0% (162 Bytes)
[#006] sha256:f8ffadd8a01e129ee294e583e20851b7ce88ba3db095dbdaa336904766c56963 - 0.0% (196 Bytes)
[#007] sha256:62852b5bc598e01cd933acf3d6cbe1c25aa08e7ebc368d9fc4ab546671c8470a - 0.01% (4.29 KB)
[#008] sha256:814497ec5ea3bebe4f066cf808b912944b9b435c65f2f29bbd521dd53e52d008 - 0.0% (121 Bytes)
[#009] sha256:75aec68e09cc81797d76bb1f2000d3c728d48208f1160aa7de5584a87871d613 - 0.0% (2 KB)
[#010] sha256:d5354b4e9dbee6eae99ab6278ebf49413193e937d35174280889d275e12de47c - 8.61% (5.3 MB)
[#011] sha256:ba7907a60a09240213c86e50f376453482285d2fae3db6b9c8fbbe2567d9e2f5 - 2.99% (1.84 MB)
[#012] sha256:20de7a81d96941df58e16c67eabae27c921a67001dd1d0b3a7b76046b6faa660 - 0.29% (181 KB)
[#013] sha256:969fda9bc0b02eea692496fec8448dddbbd2e07bec06313dd9aeda4eb306d313 - 1.62% (1020 KB)
/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:43:17 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-12-17 05:43:18 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.10
2020-12-17 05:43:19 UTC/bin/sh -c #(nop) ENV PG_SHA256=13e6d2f80662fe463bc7718cdf0de6a9ec67fc78afcc7a3ae66b9ea19bb97899
2020-12-17 05:46:20 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:46:25 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-12-17 05:46:28 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:46:30 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-12-17 05:46:38 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-12-17 05:46:40 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-12-30 01:02:29 UTC/bin/sh -c #(nop) COPY file:f937c0ee3ab8736d7adeefe3108ce546c352d85751a620058fb9427c3648a82c in /usr/local/bin/
2020-12-30 01:02:32 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-12-30 01:02:34 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-12-30 01:02:36 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-12-30 01:02:38 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-12-30 01:02:40 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-01-04 18:47:26 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-01-04 18:47:26 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-01-04 18:47:26 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-01-04 18:54:33 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:54:33 UTC
65.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_SHA25613e6d2f80662fe463bc7718cdf0de6a9ec67fc78afcc7a3ae66b9ea19bb97899
PG_VERSION11.10
TIMESCALEDB_VERSION2.0.0
[#000] sha256:159e5727ea618dfe8b08811112e2c51f5bd2b9ae7db9eb214914a65249f70ca0 - 3.93% (2.58 MB)
[#001] sha256:d20223af9aac4511a0a9a78463ff758585620e621be0678319eba90176b7e615 - 0.0% (1.25 KB)
[#002] sha256:2482f57ac4ab8ff038d0589f0507eea54d56adf3da98ff95df25c6beb575c1e4 - 0.0% (148 Bytes)
[#003] sha256:bfa2b7a439de182ab9abf24a34004aca00797b69c82c87f3bb611e2e5306e9f7 - 83.09% (54.6 MB)
[#004] sha256:141a8d433f85b21d77a887387af958b75ece11b8a0ee245683d38767a427411c - 0.01% (7.4 KB)
[#005] sha256:a0b1eb3e46b06a019efe288d5111a8884783101ad0248f5e43297e5191bf9d5c - 0.0% (161 Bytes)
[#006] sha256:13701be335976fd3ce5a8665266cad76202f4c10c1568d4e137a249614911d2f - 0.0% (193 Bytes)
[#007] sha256:5163f09a92b9ea8316be403f5cf703a53c52ad3041ffbe01e7d26465e9b4aa21 - 0.01% (4.29 KB)
[#008] sha256:3cb84fb63ef0deef58040d241c992c67c9e3d2a04cdba9013f58aba7461f34da - 0.0% (121 Bytes)
[#009] sha256:9580d1d360a679a0923a4d11690d2423bdbfe01494f06932b65e9a4e36952fd5 - 0.0% (2 KB)
[#010] sha256:675a139717896ef2cdb42ce1084aa60e1d354cbfccca0f778575cc83a1f5b193 - 8.02% (5.27 MB)
[#011] sha256:c7ab5c6fc9151f668bc1ebc2934a9129e9a1bcdf3c9bbd015aee6b2edf07a108 - 3.11% (2.05 MB)
[#012] sha256:550bb56c6fd528e2fe642d5615fef4a8df4fd162231d418d49c281d2f3fd774a - 0.27% (181 KB)
[#013] sha256:76c5e4cda30316feaad83d0c120292ce5cdfb29ad8a866b3e5d72eb532a82cff - 1.55% (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:10:36 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-12-17 04:10:37 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.10
2020-12-17 04:10:42 UTC/bin/sh -c #(nop) ENV PG_SHA256=13e6d2f80662fe463bc7718cdf0de6a9ec67fc78afcc7a3ae66b9ea19bb97899
2020-12-17 04:14:30 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:14:36 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-12-17 04: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 04:14:39 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-12-17 04:14:41 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-12-17 04:14:42 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-12-30 00:44:00 UTC/bin/sh -c #(nop) COPY file:f937c0ee3ab8736d7adeefe3108ce546c352d85751a620058fb9427c3648a82c in /usr/local/bin/
2020-12-30 00:44:06 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-12-30 00:44:10 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-12-30 00:44:13 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2020-12-30 00:44:15 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-12-30 00:44:18 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.0.0
2021-01-04 18:44:56 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-01-04 18:47:29 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-01-04 18:47:29 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-01-04 18:47:29 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-01-04 18:54:33 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.