2021-07-06 11:49:48 UTC
86.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_SHA25687f9d8b16b2b8ef71586f2ec76beac844819f64734b07fa33986755c2f53cb04
PG_VERSION11.12
TIMESCALEDB_VERSION2.3.1
[#000] sha256:be21df321efb39c5daf3151073ebff7688e15ea6cd5158878bc9559a5db76ac6 - 3.11% (2.69 MB)
[#001] sha256:c53f1659e95a66231a1dc5b485721b25715f9ac8bd845eb152e34f662adad6d5 - 0.0% (1.25 KB)
[#002] sha256:b6739c4193b8d53cc791a1e1b0e06cb86b4dd9d32c22cb9437cb4a83579d6c38 - 0.0% (149 Bytes)
[#003] sha256:d17cfd640f00948e5e3bbcf8a42929df48896b714de053c9f497366da37ce9e9 - 83.56% (72.3 MB)
[#004] sha256:48f6c281569fa3e79c361ba6c00ec3df52c872c0656fee48d753296a0742b684 - 0.01% (7.8 KB)
[#005] sha256:8200e80aadf0c499f15691a6889f651dba299874af16cef3064372a47cfd6c97 - 0.0% (161 Bytes)
[#006] sha256:b45d5019dbff3389875e4d9efd41504308beecc6ef3b76b408f433ca468fd399 - 0.0% (191 Bytes)
[#007] sha256:c260790292899145e2fcdd66e3c541c583004e43e17356628f90e59f2a76c2ec - 0.0% (4.3 KB)
[#008] sha256:59eae93b2e01beb31a2b1a121bab404431aba8042195ec5f3c982bb319dc35e0 - 0.0% (2.03 KB)
[#009] sha256:6d0960abe03aceb415a79abfd049ef340d7630a3c72c75bf40c5ae9a4273ec43 - 6.4% (5.54 MB)
[#010] sha256:131c566eb233ffaa6b5eba4b7276f13772958cdffcfd874f888fc37d7121b12a - 5.01% (4.34 MB)
[#011] sha256:addfda4c945e95bec0e3ce4323efc644547ed20f2eb9639b1c9f9b59049fe7e0 - 0.4% (357 KB)
[#012] sha256:ba6a6160ca1eedba7a0178a6141209c7a2033f99108f79f01633606b9cee56af - 1.5% (1.3 MB)
/bin/sh -c #(nop) ADD file:3b0fe1454491bb05e218b090fd461f2fd39546aa4a53eb3f953ee8eae149ac57 in /
2021-06-15 21:38:30 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-06-16 23:08: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
2021-06-16 23:08:39 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-06-16 23:08:40 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-06-16 23:14:13 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-06-16 23:14:13 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.12
2021-06-16 23:14:13 UTC/bin/sh -c #(nop) ENV PG_SHA256=87f9d8b16b2b8ef71586f2ec76beac844819f64734b07fa33986755c2f53cb04
2021-06-25 19:18:51 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 llvm11-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
2021-06-25 19:18:53 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-06-25 19:18:54 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-06-25 19:18:54 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-06-25 19:18:55 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-06-25 19:18:55 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-06-25 19:18:55 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-06-25 19:18:56 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-06-25 19:18:56 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-06-25 19:18:56 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-06-25 19:18:56 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.3.1
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-07-06 11:48:00 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-07-06 11:48:00 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-07-06 11:48:00 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-07-06 11:49:48 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 -DGENERATE_DOWNGRADE_SCRIPT=ON -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-07-06 11:49:35 UTC
81.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_SHA25687f9d8b16b2b8ef71586f2ec76beac844819f64734b07fa33986755c2f53cb04
PG_VERSION11.12
TIMESCALEDB_VERSION2.3.1
[#000] sha256:5843afab387455b37944e709ee8c78d7520df80f8d01cf7f861aae63beeddb6b - 3.27% (2.68 MB)
[#001] sha256:525703b16f79bf722bb99ceb8d8e255d48302db2747d5f58db027abc3861c5ba - 0.0% (1.25 KB)
[#002] sha256:86f8340bd3d9f676a8b82d79fa7505af62500227d8991affdbacbdc428fb3c38 - 0.0% (149 Bytes)
[#003] sha256:d13ca52aca5f8e528d7ebcaf34e5a2c8f292f62c298a973d1da069578328105d - 82.95% (67.9 MB)
[#004] sha256:bc8e5c77a726369309a785e70b989a7142a91acf1f858fb224b0ad471d6e454a - 0.01% (7.8 KB)
[#005] sha256:9384a66ff1025f0fa81c0118b7c1f0bef2f76655f92626ecaaabd17368f9f6b0 - 0.0% (160 Bytes)
[#006] sha256:298ce741d1c2d7ed98066109a03575feec88c7f498636dabd7168bd41ccefb78 - 0.0% (193 Bytes)
[#007] sha256:f62a95b041ff6d43dbf40462af41343b50082cee8494095309a5c599b0f97102 - 0.01% (4.3 KB)
[#008] sha256:dc73574dbb92f7ba0d70c433a370c8f79db8d9c9d2a4ef620198dcbbb31268c1 - 0.0% (2.03 KB)
[#009] sha256:f8a89dd698ec17660a30c6a86fb38b73cdbb96d078eed12bc6aeb461f5d5eec3 - 6.83% (5.6 MB)
[#010] sha256:cf0bbba598f701def9bfb1b8b653b5e18326780f308098ec8c282867dec4ea45 - 4.92% (4.03 MB)
[#011] sha256:a8107b34c3130d75b4b817b66040c07f59c49ec80f5c58afa2ac711cdb494939 - 0.43% (357 KB)
[#012] sha256:25d694378ceeffdd1d04e5292ba053b3ae3294ddf35c076fa2d179917264a77b - 1.58% (1.29 MB)
/bin/sh -c #(nop) ADD file:f278386b0cef68136129f5f58c52445590a417b624d62bca158d4dc926c340df in /
2021-06-15 22:19:37 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-06-16 22:24:56 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
2021-06-16 22:24:56 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-06-16 22:24:57 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-06-16 22:30:18 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-06-16 22:30:18 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.12
2021-06-16 22:30:18 UTC/bin/sh -c #(nop) ENV PG_SHA256=87f9d8b16b2b8ef71586f2ec76beac844819f64734b07fa33986755c2f53cb04
2021-06-25 19:28:01 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm11-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
2021-06-25 19:28:04 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-06-25 19:28:06 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-06-25 19:28:06 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-06-25 19:28:08 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-06-25 19:28:08 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-06-25 19:28:08 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-06-25 19:28:09 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-06-25 19:28:09 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-06-25 19:28:10 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-06-25 19:28:10 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.3.1
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-07-06 11:47:55 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-07-06 11:47:55 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-07-06 11:47:55 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-07-06 11:49:35 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 -DGENERATE_DOWNGRADE_SCRIPT=ON -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-07-06 12:00:34 UTC
80.1 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_SHA25687f9d8b16b2b8ef71586f2ec76beac844819f64734b07fa33986755c2f53cb04
PG_VERSION11.12
TIMESCALEDB_VERSION2.3.1
[#000] sha256:b4c9a0924271af3466de27804af26420eb58da1466e7eaaba127d178b380fea3 - 3.13% (2.5 MB)
[#001] sha256:bf406c5d7ec791a51d8d15393de932c25f8dc5fe76a7c3dd40e254acd03f3ee5 - 0.0% (1.25 KB)
[#002] sha256:3ac4c25d65a7592994fa168d460c4333a15dc5e1e74fa8294e49a39625239f42 - 0.0% (149 Bytes)
[#003] sha256:50073e08904038f88bd3f97c5bb8af730a4cf1345755838c3ec67c70c572e46c - 83.35% (66.7 MB)
[#004] sha256:f256849fc23064db3c60589d5ac41552961422e74f65c6405d3367db9a5fd34f - 0.01% (7.8 KB)
[#005] sha256:e6f9f68c840feb81bd969dda2362cb03ee9a9d73f7269d41db25708a180cad02 - 0.0% (161 Bytes)
[#006] sha256:28558aff66097a999ac8bdabf8faa91cb9365eed95def3c43ed21cc087cdc903 - 0.0% (195 Bytes)
[#007] sha256:cd3b545ed57d1b2298c836e76ecbae32e7ce547e54234683cef3fcaf8743f084 - 0.01% (4.3 KB)
[#008] sha256:dc73574dbb92f7ba0d70c433a370c8f79db8d9c9d2a4ef620198dcbbb31268c1 - 0.0% (2.03 KB)
[#009] sha256:d15bb11474d1cf7fd57fd0cd9144b8e54f28d0ee5594c6ee6529cde3af56373f - 6.63% (5.31 MB)
[#010] sha256:2c998c72593320c3208fdd0a124ec2645cce74ecb99b24c90dda7f42dc7b00da - 4.83% (3.87 MB)
[#011] sha256:cf32d4ead228866b6f0c271422f136ee8f7741d28587672ab91200142e9d0650 - 0.43% (357 KB)
[#012] sha256:bcfc19781bf75e01ad05f9a984093d9ad617c5ff3cd25a5cfa042e50ae754749 - 1.61% (1.29 MB)
/bin/sh -c #(nop) ADD file:c80bc2b093cbc0fc466582ef21cbed377de9fa874aedbf320079525ddacd1200 in /
2021-06-15 22:57:26 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-06-21 23:59: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
2021-06-21 23:59:22 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-06-21 23:59:23 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-06-22 00:08:50 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-06-22 00:08:50 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.12
2021-06-22 00:08:51 UTC/bin/sh -c #(nop) ENV PG_SHA256=87f9d8b16b2b8ef71586f2ec76beac844819f64734b07fa33986755c2f53cb04
2021-06-25 19:24: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 llvm11-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
2021-06-25 19:24:32 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-06-25 19:24:34 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-06-25 19:24:34 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-06-25 19:24:36 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-06-25 19:24:36 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-06-25 19:24:37 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-06-25 19:24:37 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-06-25 19:24:38 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-06-25 19:24:38 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-06-25 19:24:39 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-07-06 11:47:19 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-07-06 11:47:19 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-07-06 11:47:19 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.3.1
2021-07-06 11:47:19 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-07-06 11:51:07 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-07-06 11:51:07 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-07-06 11:51:07 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-07-06 12:00: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 -DGENERATE_DOWNGRADE_SCRIPT=ON -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-07-06 12:00:33 UTC
75.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_SHA25687f9d8b16b2b8ef71586f2ec76beac844819f64734b07fa33986755c2f53cb04
PG_VERSION11.12
TIMESCALEDB_VERSION2.3.1
[#000] sha256:136482bf81d1fa351b424ebb8c7e34d15f2c5ed3fc0b66b544b8312bda3d52d9 - 3.06% (2.32 MB)
[#001] sha256:de358c6e46472c219573fa1a55631af8c7bf91e9b1ea76d0f6d9180027b05b17 - 0.0% (1.25 KB)
[#002] sha256:1ab295b5804b0a6e29db014f413a57fc1655f93e692da751d046d79837cc0a4e - 0.0% (149 Bytes)
[#003] sha256:d2c59642ffc4fd06ed8ee1b916ce84193c403757ecfb1670c420c16c03f75560 - 83.03% (62.9 MB)
[#004] sha256:888f160e190dce9216d0b56a03afa08fce580ae01dde3c69a75bfc7d4cb99022 - 0.01% (7.8 KB)
[#005] sha256:ed2f03f6d09b4c7d4c591617028ee302dc87142739172aa49b716e408c4d001c - 0.0% (161 Bytes)
[#006] sha256:e33ed46b2ad69294a16f9055b5ed16e9635b8c059f79b60b8ecb094d53eeb608 - 0.0% (193 Bytes)
[#007] sha256:b5af638b5fc8ccdfc4d7377b3c6dc623564c39f6e99bb5b3b9fb612813960f88 - 0.01% (4.3 KB)
[#008] sha256:4a6190412329942a4393e746a6d5de512c8d8bc6738f5a2c12ad95da4e394316 - 0.0% (2.03 KB)
[#009] sha256:ef5da8a91fa934d7c0257ce23e14f967881d1ea840e4611d3610cf185e92786f - 7.0% (5.3 MB)
[#010] sha256:cedd01dd72ccf5389bd001db53abc6752c8d4918aa0bac0309126ce97e306aab - 4.76% (3.61 MB)
[#011] sha256:55f3c734c0c0e8ec347f22102b7e87e6be0a976f71abe2a98352ce862691f4b6 - 0.46% (357 KB)
[#012] sha256:99b6c0de5a482c3befb9d28c2b0fbd6e218fc5bfafeaa8be73d07ecb7ab929d9 - 1.68% (1.27 MB)
/bin/sh -c #(nop) ADD file:416a8b507abdc6bdcb22997a4be0a4170796c3f9f77e315b2dbff2b0a212bc68 in /
2021-06-15 23:15:06 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-06-23 19:33:12 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
2021-06-23 19:33:13 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-06-23 19:33:15 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-06-23 21:05:59 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-06-23 21:05:59 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.12
2021-06-23 21:06:00 UTC/bin/sh -c #(nop) ENV PG_SHA256=87f9d8b16b2b8ef71586f2ec76beac844819f64734b07fa33986755c2f53cb04
2021-06-25 19:56:56 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm11-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
2021-06-25 19:56:58 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-06-25 19:57:00 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-06-25 19:57:00 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-06-25 19:57:02 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-06-25 19:57:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-06-25 19:57:03 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-06-25 19:57:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-06-25 19:57:04 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-06-25 19:57:04 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-06-25 19:57:05 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-07-06 11:47:18 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-07-06 11:47:18 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-07-06 11:47:18 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.3.1
2021-07-06 11:47:18 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-07-06 11:50:32 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-07-06 11:50:32 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-07-06 11:50:32 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-07-06 12:00: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 -DGENERATE_DOWNGRADE_SCRIPT=ON -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-07-06 12:01:24 UTC
80.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_SHA25687f9d8b16b2b8ef71586f2ec76beac844819f64734b07fa33986755c2f53cb04
PG_VERSION11.12
TIMESCALEDB_VERSION2.3.1
[#000] sha256:58ab47519297212468320b23b8100fc1b2b96e8d342040806ae509a778a0a07a - 3.21% (2.58 MB)
[#001] sha256:014ca0527e174cf1bce26a8ba236f17ca0ffd4ebd97fd99b18dd76c382ea5bca - 0.0% (1.25 KB)
[#002] sha256:ee9ed2adb5ac9aa385033227091a3f86d6ea0b74ea30e6ee625da34db4ca5a20 - 0.0% (149 Bytes)
[#003] sha256:bb85e4ca3eb4ce582bf39e498129296c4b433f1ee7ac29bb32819f5a07cb9809 - 83.26% (67 MB)
[#004] sha256:22a69e83e7512931bfccb9f1926ac3735295277e3f69fe83ae09a47a81bf98c5 - 0.01% (7.8 KB)
[#005] sha256:f69eddde980f7451f8f72537fe2f96d4af4d121176b4162ad82e9ddb7de6bffd - 0.0% (163 Bytes)
[#006] sha256:d8c917fdea696129bb5be3be520b975e5ed97bd216410c4d6fce995c00deaa3b - 0.0% (193 Bytes)
[#007] sha256:7e89d38440b8cf74a81a8555e6a2bed8b7b34223d6c1a5097e665cba809bfda5 - 0.01% (4.3 KB)
[#008] sha256:dc73574dbb92f7ba0d70c433a370c8f79db8d9c9d2a4ef620198dcbbb31268c1 - 0.0% (2.03 KB)
[#009] sha256:a42114a4c67a2bdcb701ce1fa63b47f5cbd7b8c7825e1664844f33f890c2cc58 - 6.55% (5.27 MB)
[#010] sha256:f4dc485a8c972d6423aed562e79a675ba22c3b98c75d4e8fe2f538676c596a78 - 4.92% (3.96 MB)
[#011] sha256:62adbaf7e01bc805409476fafbe785e4832a3b5f0f033974ad840d187a0080c0 - 0.43% (357 KB)
[#012] sha256:9152ffefc8ae3c332423b74a1ca460a6d0e6d5e2716602f691b55e9a3bafc77b - 1.61% (1.29 MB)
/bin/sh -c #(nop) ADD file:6797caacbfe41bfe44000b39ed017016c6fcc492b3d6557cdaba88536df6c876 in /
2021-06-15 21:44:56 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-06-16 23:08:22 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
2021-06-16 23:08:23 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-06-16 23:08:23 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-06-16 23:22:12 UTC/bin/sh -c #(nop) ENV PG_MAJOR=11
2021-06-16 23:22:12 UTC/bin/sh -c #(nop) ENV PG_VERSION=11.12
2021-06-16 23:22:12 UTC/bin/sh -c #(nop) ENV PG_SHA256=87f9d8b16b2b8ef71586f2ec76beac844819f64734b07fa33986755c2f53cb04
2021-06-25 19:08:58 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 llvm11-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
2021-06-25 19:08:59 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-06-25 19:09:00 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-06-25 19:09:00 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-06-25 19:09:01 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-06-25 19:09:01 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-06-25 19:09:01 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-06-25 19:09:02 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-06-25 19:09:02 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-06-25 19:09:02 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-06-25 19:09:02 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)ENV TIMESCALEDB_VERSION=2.3.1
2021-07-06 11:47:20 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2021-07-06 11:50:48 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2021-07-06 11:50:48 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2021-07-06 11:50:48 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2021-07-06 12:01:24 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 -DGENERATE_DOWNGRADE_SCRIPT=ON -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.