2020-04-17 12:44:58 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_MAJOR11
PG_SHA256324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313
PG_VERSION11.7
TIMESCALEDB_VERSION1.7.0
[#000] sha256:43f6a4398e1c9e860dfb5c93d7049ab9eedf814513bd6d07e06077c560303c7a - 3.96% (2.68 MB)
[#001] sha256:7cdf55f7a0aa0a693844419981d81c70054f4bc176f69e991a997bef43eb26b0 - 0.0% (1.22 KB)
[#002] sha256:1da5023fc51830a3c2363157395875af5c493b6c0bd05ce36d1b47771b691560 - 0.0% (115 Bytes)
[#003] sha256:73cda6db51a70d3b02a893c025401b8b657cd17e085c01959ba30a1fb03ee42f - 83.48% (56.4 MB)
[#004] sha256:4469b405610974cb0dd65500121c373536bd6bb4cfb43aff3ed58e18313817af - 0.01% (7.39 KB)
[#005] sha256:8c6db3cf324d4969f3c8bd56c3fbff442f4ef2daba6483bf319db4e96546123d - 0.0% (129 Bytes)
[#006] sha256:74f782bb8b254faf70368c76725cd6ded0189e18d1febccc772d41714119a176 - 0.0% (162 Bytes)
[#007] sha256:09a1850c49d084fb29599eac2af1bd562585f1a6d49d1048994036f96b103d51 - 0.01% (4.16 KB)
[#008] sha256:8f0e7cfa3e543be804ca47d4dc03deda5d3b4566588d3c53eb032e6765d0a087 - 0.0% (121 Bytes)
[#009] sha256:76d4a5727aee5b65fe545ae84b1cec3c7c059953e6b02e6603859925caefce68 - 0.0% (2.01 KB)
[#010] sha256:9648c595afae4c705b4f1e1c02d41ea95765fce35630d852cfaef1754668ce9f - 8.19% (5.53 MB)
[#011] sha256:5ff0ba46e3d668a813b7a629194432464986166aca79f7e64b971b5dc1f1d2a5 - 2.42% (1.64 MB)
[#012] sha256:db6cc9a9d2a2e5b3af179287c7c9e8296db5ca1348c53d2f0ed8c3667144275b - 0.13% (90.1 KB)
[#013] sha256:e6d332df255f83f77c17d90cdc349d9c269f6bd139ca7736debced296a0c28e2 - 1.8% (1.22 MB)
/bin/sh -c #(nop) ADD file:99c8234abafd4fa915c0b826eb0e3be0e6aaa7c1e33cb1214ef71a99e9c02e06 in /
2020-03-23 21:38:28 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-03-24 02:01: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-03-24 02:01:01 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-03-24 02:01:03 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-03-24 02:12:24 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-03-24 02:12:24 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.7
2020-03-24 02:12:24 UTC/bin/sh -c #(nop) ENV PG_SHA256=324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313
2020-03-24 02:22:36 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-03-24 02:22:37 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-03-24 02:22:38 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-03-24 02:22:38 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-03-24 02:22:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-03-24 02:22:39 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-03-24 02:22:39 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-03-24 02:22:40 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-03-24 02:22:40 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-03-24 02:22:40 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-03-24 02:22:41 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-17 12:42:27 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-04-17 12:42:27 UTC (buildkit.dockerfile.v0)MAINTAINER Timescale https://www.timescale.com
2020-04-17 12:42:27 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=1.7.0
2020-04-17 12:42:27 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-04-17 12:43:20 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-04-17 12:43:20 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-04-17 12:43:20 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-04-17 12:44:58 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-04-17 12:44:49 UTC
64.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_SHA256324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313
PG_VERSION11.7
TIMESCALEDB_VERSION1.7.0
[#000] sha256:aad63a9339440e7c3e1fff2b988991b9bfb81280042fa7f39a5e327023056819 - 4.14% (2.67 MB)
[#001] sha256:a5b4c973b808455b5a0f405abb1ae54c769bf4a42a7af686fc96b4469b3444e5 - 0.0% (1.22 KB)
[#002] sha256:074a034a3a7aef9e887181bce1bf5fcf938f0c6d5ac8929d6139853efa4c850b - 0.0% (115 Bytes)
[#003] sha256:9baafdb78901c05a379f58d989c9a3a1ce68592803d9703583da15a26c9b4f98 - 82.75% (53.4 MB)
[#004] sha256:0a3d6dccc83df24e9b4ee215a6052b5b6e2ea512843a004c5aba1aea1e2a794e - 0.01% (7.4 KB)
[#005] sha256:cbeeb53f7511d02c9d45001f8a71f73ab201cfe8c3e00998953dd23260ae5bfa - 0.0% (129 Bytes)
[#006] sha256:f1d3687f9b22c98f9c11b6e8b63d890e19dff0004706d8f441d1b9dad0b9fe7a - 0.0% (164 Bytes)
[#007] sha256:2d9d21a2c9999dda52030a5176635048b8b8b4fdb4794490dd18f219ca684518 - 0.01% (4.16 KB)
[#008] sha256:a21f5512bc1e959ad2111ec23d41495a84d5ca7892972c6dff7269b0ce4b05ca - 0.0% (121 Bytes)
[#009] sha256:ecf2965917919672d900485ca939ba2bb03ce2fcff01ceed3ab7335ab24a7a8a - 0.0% (2.01 KB)
[#010] sha256:5e94134d05ea6894e98137eab7ec55ddef2822c477cd3f6b85f715b6816f8fc7 - 8.67% (5.59 MB)
[#011] sha256:8d1364321d05e9669d439e7831943322d650023e55660fbbc90bd1279f4131de - 2.47% (1.59 MB)
[#012] sha256:7ff43bc0165f97f5e45d770ea76523d58305c04291eca368358a82597f629612 - 0.14% (90.1 KB)
[#013] sha256:80abcfc1f74f65828683b18e964ecf9e4d309a70a14bbaec58fc8c66605da679 - 1.81% (1.17 MB)
/bin/sh -c #(nop) ADD file:0c4555f363c2672e350001f1293e689875a3760afe7b3f9146886afe67121cba in /
2020-03-23 21:19:34 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-03-23 23:47:57 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-03-23 23:47:57 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-03-23 23:47:58 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-03-23 23:58:22 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-03-23 23:58:22 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.7
2020-03-23 23:58:23 UTC/bin/sh -c #(nop) ENV PG_SHA256=324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313
2020-03-24 00:09:11 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-03-24 00:09:12 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-03-24 00:09:14 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-03-24 00:09:14 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-03-24 00:09:16 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-03-24 00:09:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-03-24 00:09:17 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-03-24 00:09:19 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-03-24 00:09:19 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-03-24 00:09:19 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-03-24 00:09:20 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-17 12:42:23 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-04-17 12:42:23 UTC (buildkit.dockerfile.v0)MAINTAINER Timescale https://www.timescale.com
2020-04-17 12:42:23 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=1.7.0
2020-04-17 12:42:23 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-04-17 12:43:17 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-04-17 12:43:17 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-04-17 12:43:17 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-04-17 12:44:49 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-04-17 12:56:33 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_MAJOR11
PG_SHA256324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313
PG_VERSION11.7
TIMESCALEDB_VERSION1.7.0
[#000] sha256:0776aeec3430c5a5ba3f43937f0ee6a7770a1fe81a318c9d94cc76512e5375e9 - 3.99% (2.5 MB)
[#001] sha256:2d97752a4ca8f8fc42bf0639a04a1c8bb9244ebdf4bf1c009b9aa4e4f5f3bcd7 - 0.0% (1.25 KB)
[#002] sha256:6ae682c8811415ca60e2e25e0806be8a3ce9ca960ca7a0d4d0b0c86a0a274956 - 0.0% (149 Bytes)
[#003] sha256:ac475721a885817929fd63c25bb34247e100be7a63d458dcb5cd9f823cdf3612 - 83.01% (52 MB)
[#004] sha256:df36c1ea4dd3546cb6135afe0a191104c06ff9cae896d8a696817bf77d4b412a - 0.01% (7.4 KB)
[#005] sha256:e87749f588e1ca17234f132a38fa6d791eed2d1bee7aa1b937d3052a611ef176 - 0.0% (162 Bytes)
[#006] sha256:23faee9ef18704fb45e995f16367456a7062475871983fe02d464746b49ba9ca - 0.0% (195 Bytes)
[#007] sha256:19cace94182dc68c5c592e1d7a6ceec6f3120711fab96ee736d5f1478aa24267 - 0.01% (4.17 KB)
[#008] sha256:bd0d0527c64d814bed8dd608ade7316e038c88e8fab266f28325a6a7190ff5c0 - 0.0% (121 Bytes)
[#009] sha256:e1605678c1d18693a36229f931d1126b45b15a41dfdbbe2e1af5a9db4e1aa386 - 0.0% (2.01 KB)
[#010] sha256:7c0042975df2c9fd8ba29dc4a0008957b6c314df02a256cf3d5736eec5f51306 - 8.47% (5.3 MB)
[#011] sha256:1e629430864f20c3ec56bba11995fa87e271ef46c2bf6156401a460968dfeee4 - 2.52% (1.58 MB)
[#012] sha256:841ca0ff2c31cc6bcd5fe2da898111c5dec2375afb4de07d084fd77db1277165 - 0.14% (90.1 KB)
[#013] sha256:90d85523364f5b8f8a8cdfdf233c523de460dae3046d905ce825b5e3174905b7 - 1.85% (1.16 MB)
/bin/sh -c #(nop) ADD file:e2fdfc637b534345942caf4097883508a5ed23be97d85ccc3357b8277aaa5430 in /
2020-03-23 21:49:27 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-03-23 23:26:16 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-03-23 23:26:17 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-03-23 23:26:19 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-03-23 23:31:19 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-03-23 23:31:20 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.7
2020-03-23 23:31:22 UTC/bin/sh -c #(nop) ENV PG_SHA256=324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313
2020-03-23 23:35:34 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-03-23 23:35:37 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-03-23 23:35:39 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-03-23 23:35:40 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-03-23 23:35:41 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-03-23 23:35:42 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-03-23 23:35:42 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-03-23 23:35:44 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-03-23 23:35:45 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-03-23 23:35:46 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-03-23 23:35:46 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-17 12:42:26 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-04-17 12:42:26 UTC (buildkit.dockerfile.v0)MAINTAINER Timescale https://www.timescale.com
2020-04-17 12:42:26 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=1.7.0
2020-04-17 12:42:26 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-04-17 12:46:01 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-04-17 12:46:01 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-04-17 12:46:01 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-04-17 12:56:33 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-04-17 12:56:44 UTC
60 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_SHA256324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313
PG_VERSION11.7
TIMESCALEDB_VERSION1.7.0
[#000] sha256:d9bf605ce3d4449f4b90035c3e21d691806324781d43a5287b1da25a01779d6b - 3.85% (2.31 MB)
[#001] sha256:d48d9b30ccc2f0daa550064546b02eddaa410c0a5ff36be31fc55c747b40e0ad - 0.0% (1.25 KB)
[#002] sha256:a59176775d1234d40a9b589b93b12933263fc13cde3b8672653317d01d4203e6 - 0.0% (149 Bytes)
[#003] sha256:2150c6ba3e85d1502012a9b4a1f6a34b69afc8eefe6c2d341a46b79d21341bde - 82.68% (49.6 MB)
[#004] sha256:ad00e5a503fb573733244a190c5e7c4e3a9e344b5b584556a4673d632511d3a3 - 0.01% (7.39 KB)
[#005] sha256:5d8c171816ed2ea6dda9e43817c60910ef1cae9b7c2c9801f808ebdf0fb96e36 - 0.0% (161 Bytes)
[#006] sha256:27e9a3f2ce480a560716e2c70cdc414c1870d1afb85a6721ebaf14ba4cc5359e - 0.0% (194 Bytes)
[#007] sha256:ba84b6aef2ab86f70dc94f3e465d8d70c87744ef33023da38710923f1bd9bd25 - 0.01% (4.16 KB)
[#008] sha256:7ae8e1689036c43c5f004d3b2f9a203a90d6bca322bfbd43545f23e6fdd5919b - 0.0% (118 Bytes)
[#009] sha256:29797e753e568506df5e189fd5da8b1c518d8b74adadffbebf17f315cc30bde9 - 0.0% (2.01 KB)
[#010] sha256:341d9147470be1d8fb2816b563447010c21e0032134f17d8d64f03682dd63927 - 8.83% (5.3 MB)
[#011] sha256:838e4bdf0030f67f9184c926a9674430234d172592b5fb1a20f8903f0ac16c08 - 2.59% (1.55 MB)
[#012] sha256:7d77462d6adc989e65c6a9e8dd49b4d2fd9c59b4b20b62ade0e15e974503dd1f - 0.15% (90.1 KB)
[#013] sha256:33238ff5540db6823e3a62d422a482cb7474914746e9c3eb03ae2c21618ec391 - 1.88% (1.13 MB)
/bin/sh -c #(nop) ADD file:3bde6b6fd06efbf24e66446c6d32f72294fc749ae9ee6191776242e92b2f8ab4 in /
2020-03-23 21:57:56 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-03-23 22:43:21 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-03-23 22:43:21 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-03-23 22:43:23 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-03-23 22:49:03 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-03-23 22:49:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.7
2020-03-23 22:49:08 UTC/bin/sh -c #(nop) ENV PG_SHA256=324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313
2020-03-23 22:52:21 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-03-23 22:52:38 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-03-23 22:52:43 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-03-23 22:52:43 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-03-23 22:52:45 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-03-23 22:52:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-03-23 22:52:47 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-03-23 22:52:49 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-03-23 22:52:50 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-03-23 22:52:51 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-03-23 22:52:51 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-17 12:42:24 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-04-17 12:42:24 UTC (buildkit.dockerfile.v0)MAINTAINER Timescale https://www.timescale.com
2020-04-17 12:42:24 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=1.7.0
2020-04-17 12:42:24 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-04-17 12:45:31 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-04-17 12:45:31 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-04-17 12:45:31 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-04-17 12:56:44 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-04-17 12:59:01 UTC
63.8 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_SHA256324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313
PG_VERSION11.7
TIMESCALEDB_VERSION1.7.0
[#000] sha256:8a0637ca1ac98db4cf29f7632449c92801adc80cf0da2cd9c9e39882ce466561 - 4.07% (2.6 MB)
[#001] sha256:7bf70ccdbfa7098e9140b79b24406b2b9d982a82a0a28d57d23a96773cb603b5 - 0.0% (1.25 KB)
[#002] sha256:6ae682c8811415ca60e2e25e0806be8a3ce9ca960ca7a0d4d0b0c86a0a274956 - 0.0% (149 Bytes)
[#003] sha256:ea21322fc886872fca215d660ea6d683f600bf36f339417059e6fd06c4a0819c - 83.21% (53.1 MB)
[#004] sha256:1ecb8c4f56a93ad29361dd63165ad5df60e986e5ba3113a7496d09b82725613a - 0.01% (7.39 KB)
[#005] sha256:f1e1f0c520b1ec539e7d268ece445733976ed0c8cb9961d53a1752d892bb8471 - 0.0% (161 Bytes)
[#006] sha256:56e5fb53dfdaf5a117a7003d8a53c3590d599bf963e67a77ea13db247c60a91e - 0.0% (195 Bytes)
[#007] sha256:cb39175fdd2a6ee217323cf26255b528b530bb32b1c376dd05ec34c602f8aaff - 0.01% (4.16 KB)
[#008] sha256:525a9824801b902588f78bcf0dd9d76e382b640fc8c79f9cb6d93f8d3b4b16e6 - 0.0% (121 Bytes)
[#009] sha256:0e0432f026bf2eaa6f1a6bf51a08b366eb5dc78a0820533591f59f126386ecb6 - 0.0% (2.01 KB)
[#010] sha256:439d2cfcc4876382f2351526e3c9801d4a73f5b9a4baa4f00695f19ea35adedf - 8.26% (5.27 MB)
[#011] sha256:e4412b0b04e89c0e2eb28f5e3fb9d4c7f1736f7d52522ed4a727f119d1e81702 - 2.48% (1.58 MB)
[#012] sha256:17f500a4a99cf1a44706c9c63a03536cb9a16048ccbc7cb622b9677c6de2787d - 0.14% (90.1 KB)
[#013] sha256:9a096a3e75d8d1e7dcb113c09642ffd338d6f11f3dfb121177064bf644f9a8ce - 1.81% (1.16 MB)
/bin/sh -c #(nop) ADD file:746a5c3838a898d6acf7877552ff13d1ab40d0036ace7a662e7c747018315ddb in /
2020-03-23 21:39:53 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-03-23 23:26:16 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-03-23 23:26:17 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-03-23 23:26:20 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-03-23 23:30:06 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2020-03-23 23:30:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.7
2020-03-23 23:30:07 UTC/bin/sh -c #(nop) ENV PG_SHA256=324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313
2020-03-23 23:33:40 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-03-23 23:33:43 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-03-23 23:33:45 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-03-23 23:33:46 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-03-23 23:33:47 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-03-23 23:33:48 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-03-23 23:33:48 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-03-23 23:33:50 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-03-23 23:33:51 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-03-23 23:33:51 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-03-23 23:33:52 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-17 12:42:27 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2020-04-17 12:42:27 UTC (buildkit.dockerfile.v0)MAINTAINER Timescale https://www.timescale.com
2020-04-17 12:42:27 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=1.7.0
2020-04-17 12:42:27 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2020-04-17 12:45:53 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2020-04-17 12:45:53 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2020-04-17 12:45:53 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2020-04-17 12:59:01 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.