2022-04-11 17:13:44 UTC
107 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:73b28a5955ec7fb46f2cf0434e4901a889f7dda3f8c9ec496300feb256c7eda8 - 2.52% (2.69 MB)
[#001] sha256:440ad7c551279d9f14743cb1f9d3d9c5e5c62431537e922e055ad3d5a9e98ddd - 0.0% (1.23 KB)
[#002] sha256:58f96dc8fa9ed931f47d352471b5f575a1bc1895361bfa37f9b002333ca26c1b - 0.0% (115 Bytes)
[#003] sha256:e18c1588288847ec8f3748cd402c7e72723d61a1eee1c7b88933f3cb1b622c00 - 75.39% (80.5 MB)
[#004] sha256:b26c3dce8881f2611257aaa1ae5c593377fc5037aa04ddf615fabed9ce2a2be3 - 0.01% (8.99 KB)
[#005] sha256:e0cbf2cf8d6b03ac855c4fa23811d9c406832d21bd8b10ecb6c228400fe2cd26 - 0.0% (129 Bytes)
[#006] sha256:55db457973fdf061b82322086f155656b5f5a99f8df1657c1bd38c230db17639 - 0.0% (168 Bytes)
[#007] sha256:5a413db5fb5f4c9e89b5225198184df099f2b57819875ec18994cca5dfa34b48 - 0.0% (4.59 KB)
[#008] sha256:d2a3263176cec72360392a1137a27768180e0de9f9641c2eb786aef862b37bbb - 0.0% (2.04 KB)
[#009] sha256:0e136e84c5aa0d31bcb736f3af176b1e9c00187959f92b4f4782cafa4a2c1e8e - 14.06% (15 MB)
[#010] sha256:329ed36e3b99dfb1b435e345af10e9060a1cfa36e2a988d939cb4ec08e97fdd6 - 2.62% (2.8 MB)
[#011] sha256:aeeca147e16f39889ed4ae39b0103c7f096081beed8d469536d086bcfc29aa84 - 2.55% (2.72 MB)
[#012] sha256:412a1403063abd9361b5181b0fc43f3d36919e7606b04c2c332544e008889404 - 2.86% (3.05 MB)
/bin/sh -c #(nop) ADD file:7d51a0f8691eb78c9062fd31984423a93d276a67b4ed5d1a706e1c2cd9fea23a in /
2022-04-04 23:38:25 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 04:18:33 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
2022-04-05 04:18:34 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 04:18:35 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 04:18:36 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 04:18:37 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 04:18:38 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 04:22:06 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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 04:22:07 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
2022-04-05 04:22:08 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 04:22:09 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 04:22:10 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 04:22:11 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 04:22:13 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 04:22:13 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 04:22:14 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 04:22:15 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 04:22:16 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-11 17:10:36 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2022-04-11 17:10:36 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2022-04-11 17:10:36 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2022-04-11 17:11:51 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2022-04-11 17:11:51 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2022-04-11 17:11:51 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2022-04-11 17:11:51 UTC (buildkit.dockerfile.v0)ARG TS_VERSION
2022-04-11 17:13:44 UTC (buildkit.dockerfile.v0)RUN |2 OSS_ONLY= -DAPACHE_ONLY=1 TS_VERSION=2.6.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 krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_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
2022-04-11 17:13:33 UTC
103 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:df9b9388f04ad6279a7410b85cedfdcb2208c0a003da7ab5613af71079148139 - 2.62% (2.68 MB)
[#001] sha256:7902437d3a1288bbe38562c760e4e6b155617991e782f33ddd81da3f4f88305a - 0.0% (1.25 KB)
[#002] sha256:709e2267bc988471d02df06f7a9f133dd3195af6da61c0869b0555f72f0c1e4e - 0.0% (149 Bytes)
[#003] sha256:10c5a0a9c34e80b759f48da2f59463143ce1b722dd90eaf58e02100cff5d465d - 74.02% (75.9 MB)
[#004] sha256:b46af7f3869332e0e51d9e40c2c2234ba734789b3e5ed3942902871489a17f68 - 0.01% (8.99 KB)
[#005] sha256:65aa0c237f80432c7bf7bff1c3fa452d556cec8111caafe23cba9843e653fa0c - 0.0% (161 Bytes)
[#006] sha256:f6493ce748128dbafbff766fd0537ef0f8c6f6f6c9f0e8b2eda112937d5c132d - 0.0% (194 Bytes)
[#007] sha256:eaac3b44f9d0cd8625068462275abcce24f5f49d1a701ef9335b7c68931e48ae - 0.0% (4.59 KB)
[#008] sha256:b70885bfce6ff5f94cc11c8e0caad389ce4fc1c839801c4e1df073fce1289cf5 - 0.0% (2.04 KB)
[#009] sha256:2d7dc8cc22111e42c9e3eb88b08283ac21c0385293976c61998090305893e834 - 14.83% (15.2 MB)
[#010] sha256:43567bbfe7d8e8e7eb24d5cf306a2bc8da4662f2ad70fe3451481d5df6e3caf1 - 2.79% (2.86 MB)
[#011] sha256:fc5614cf1771f685560241d5b0b02cc8da50bc954f33286d74cb0a906923b27a - 2.65% (2.72 MB)
[#012] sha256:b16aa6fc08356225595888e926f63e6984a02cb01ff24bffd08c76f75e04ab77 - 3.06% (3.14 MB)
/bin/sh -c #(nop) ADD file:5d673d25da3a14ce1f6cf66e4c7fd4f4b85a3759a9d93efb3fd9ff852b5b56e4 in /
2022-04-05 00:19:59 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 07:24: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
2022-04-05 07:24:39 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 07:24:40 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 07:24:40 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 07:24:40 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 07:24:40 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 07:29:37 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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 07:29:38 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
2022-04-05 07:29:38 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 07:29:38 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 07:29:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 07:29:39 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-11 17:10:36 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2022-04-11 17:10:36 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2022-04-11 17:10:36 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2022-04-11 17:11:47 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2022-04-11 17:11:47 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2022-04-11 17:11:47 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2022-04-11 17:11:47 UTC (buildkit.dockerfile.v0)ARG TS_VERSION
2022-04-11 17:13:33 UTC (buildkit.dockerfile.v0)RUN |2 OSS_ONLY= -DAPACHE_ONLY=1 TS_VERSION=2.6.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 krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_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
2022-04-11 17:29:00 UTC
99.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:c319b1fc4ed70b8241a7ce6ac0c4015d354bf5cf8c01eb73c50b6709c0c46e49 - 2.51% (2.5 MB)
[#001] sha256:8cb8e77db967e9917c31ab0acb275de8ef6e22c214dfe4e99c2f6aeb9c10b299 - 0.0% (1.25 KB)
[#002] sha256:2d6281d8a0ebe004d81faf000876292bc4f792eb730ac75d51aaeca917db6eb0 - 0.0% (148 Bytes)
[#003] sha256:8962ed5c25a872bd86ae2e22280159500e3fc1b68528eeb48da083a33f52a379 - 74.36% (74 MB)
[#004] sha256:a393e675e59cf12a4961473d9a060c85e2089803b8c7272684d72f8ae988a39e - 0.01% (8.99 KB)
[#005] sha256:ee6e264a2e1c695f84a7e84815bacb36b38228be4c9fe0a6b881609f746710aa - 0.0% (163 Bytes)
[#006] sha256:4ba115949ac16142404eb91a1167e159a52ee4aedf058c40a6bf382f795f3a26 - 0.0% (194 Bytes)
[#007] sha256:f8e7479838e96f97aea40bbd8c1f3b9fab65ec6bdb7d2cf83e09596634ecc935 - 0.0% (4.59 KB)
[#008] sha256:b70885bfce6ff5f94cc11c8e0caad389ce4fc1c839801c4e1df073fce1289cf5 - 0.0% (2.04 KB)
[#009] sha256:8b427a3847546ec4d884d57e6bc60fdc6d89f55bd7cfc226d6a6c0582d8d6b3a - 14.48% (14.4 MB)
[#010] sha256:e8740a1552ad76d654be0eab91f21a370bab540deb4750a5d0099f5f011cc0be - 2.79% (2.78 MB)
[#011] sha256:006907b706f36246c7d00736563b9fbdbd64cf41190be3119a3808a3f24f65ce - 2.74% (2.72 MB)
[#012] sha256:c4d778521363077ecf7879843d1f4e30323818575b0667c23d657118dbdea42e - 3.1% (3.08 MB)
/bin/sh -c #(nop) ADD file:159dcddaab900372df882a4e94615ed84250e9cea3e74bc0479d98280342f596 in /
2022-04-04 23:49:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 06:44:13 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
2022-04-05 06:44:13 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 06:44:15 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 06:44:15 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 06:44:16 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 06:44:16 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 06:49:17 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 06:49:19 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
2022-04-05 06:49:21 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 06:49:21 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 06:49:23 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 06:49:23 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 06:49:24 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 06:49:24 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 06:49:24 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 06:49:25 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 06:49:26 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-11 17:10:36 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2022-04-11 17:10:36 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2022-04-11 17:10:36 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2022-04-11 17:17:43 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2022-04-11 17:17:43 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2022-04-11 17:17:43 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2022-04-11 17:17:43 UTC (buildkit.dockerfile.v0)ARG TS_VERSION
2022-04-11 17:29:00 UTC (buildkit.dockerfile.v0)RUN |2 OSS_ONLY= -DAPACHE_ONLY=1 TS_VERSION=2.6.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 krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_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
2022-04-11 17:28:38 UTC
94.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:57fb4b5f1a47c953ca5703f0f81ce14e5d01cf23aa79558b5adb961cc526e320 - 2.44% (2.31 MB)
[#001] sha256:8a73a72bdda5eae4bf93e48ab5614ce664c8d55a850cc23684a669ac50d7c562 - 0.0% (1.25 KB)
[#002] sha256:900cc3f9e3fa7beceaf45b2dd8fd89c500fa73defa872eeafea1769d75770d73 - 0.0% (149 Bytes)
[#003] sha256:d8adfb15a6736896bb013598b44642801885d8214e1f4ba16d47debbc5a19399 - 73.42% (69.7 MB)
[#004] sha256:1ed17a7f370ada16668a1f2c3f802f0bd1e2dcb1bf5a80c017eba561bf81770e - 0.01% (8.99 KB)
[#005] sha256:7a8678c895dcc58e065956fcd6825d9e2756232f3c4a3d32d978456e520e51e9 - 0.0% (162 Bytes)
[#006] sha256:e7b71edd223fd5672d39d57e2b2bbdcf6a0bc5933e5363796571acc6ce4d84b4 - 0.0% (195 Bytes)
[#007] sha256:2360451ebcf1237627de0a6972e509018e8ba6c9d1790cc23ec0fe6b8945a8d2 - 0.0% (4.59 KB)
[#008] sha256:f4148fe925aac37ac5ab781c2f1a7ff18865926c8b79edfcd9fc2502630401ac - 0.0% (2.04 KB)
[#009] sha256:40805e0ee88c72eb6f26b098d1beec7ea79c6719355e94ee086370552ccad2d4 - 15.16% (14.4 MB)
[#010] sha256:e6768ebd36a2584778745416dd4510c9b20ca0626723c106c88efc01b413486a - 2.86% (2.71 MB)
[#011] sha256:f6447f6606ac35efbb43cec3f48e85d5dd9676b38b11afd144c58857cae3a8df - 2.87% (2.72 MB)
[#012] sha256:e30a01c992dac1798e45ffa9873654e704b1e36022461bc49a9afc36b4e8eb81 - 3.24% (3.07 MB)
/bin/sh -c #(nop) ADD file:20f8cdddc53a4a8bd78945fc32fe08e9f80ab3b16dc20a9aa4ba73b79f2bc71c in /
2022-04-04 23:57:35 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 10:40:04 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
2022-04-05 10:40:05 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 10:40:06 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 10:40:06 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 10:40:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 10:40:07 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 10:44:55 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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 10:44:57 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
2022-04-05 10:44:59 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 10:44:59 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 10:45:01 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 10:45:01 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 10:45:02 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 10:45:02 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 10:45:02 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 10:45:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 10:45:03 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-11 17:10:31 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2022-04-11 17:10:31 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2022-04-11 17:10:31 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2022-04-11 17:16:45 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2022-04-11 17:16:45 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2022-04-11 17:16:46 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2022-04-11 17:16:46 UTC (buildkit.dockerfile.v0)ARG TS_VERSION
2022-04-11 17:28:38 UTC (buildkit.dockerfile.v0)RUN |2 OSS_ONLY= -DAPACHE_ONLY=1 TS_VERSION=2.6.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 krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_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
2022-04-11 17:29:19 UTC
100 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR14
PG_SHA2562cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
PG_VERSION14.2
[#000] sha256:9981e73032c8833e387a8f96986e560edbed12c38119e0edb0439c9c2234eac9 - 2.58% (2.59 MB)
[#001] sha256:9998735be53b82d4d93cc72813622118271d565b9576e178c1cf196b949b56de - 0.0% (1.23 KB)
[#002] sha256:51338f5c9ae13e18e64d58b7ceacd16d0004c01ea9a50e77307e9c26794559a5 - 0.0% (115 Bytes)
[#003] sha256:38a25efe4e314a8e30195086721283f7e0f42b2fdcf744e1875f80e7259f5622 - 74.59% (74.9 MB)
[#004] sha256:cdc06d0d85d18705b288878acdc3fb313fd883ee5b78a74e3cbf6981189a3732 - 0.01% (8.99 KB)
[#005] sha256:b58ddd362edb162a023885b366740eeebfe0f58c1ee234b967695667ecdf9138 - 0.0% (130 Bytes)
[#006] sha256:06ec211c5fe3caa5fef503670477599b0c9babd24150da34cce37173e79f229b - 0.0% (170 Bytes)
[#007] sha256:b97582d6e26670a79552b62f288ca32662794a251194e116cdc4c2f81515986c - 0.0% (4.59 KB)
[#008] sha256:c522021292a0e073b50db6ec1830e625b7dbc44b046463a7397f920bac8ab984 - 0.0% (2.04 KB)
[#009] sha256:d5860b35f59e1588c76647c9c84cf13a11ec8d34723b33335c9e09b06668ce35 - 14.21% (14.3 MB)
[#010] sha256:f1d65b2ce23de5ab954d072bd126a89ee3d310dd85938af56325a250753d1abb - 2.8% (2.81 MB)
[#011] sha256:08da7e421d53faeb5298273281746d27a8f56651bd530eb0ac926f79b1a2b999 - 2.71% (2.72 MB)
[#012] sha256:f713bc2778286f223f6657353a5f6a6566de0a44e1aed0240a469c190e8d86e5 - 3.09% (3.1 MB)
/bin/sh -c #(nop) ADD file:90e56af13188c7f0283d244a0d70b853d8bef8587a41f1da8eac3a2aba8964ef in /
2022-04-04 23:39:31 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-04-05 04:22:00 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2022-04-05 04:22:01 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-04-05 04:22:02 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-04-05 04:22:03 UTC/bin/sh -c #(nop) ENV PG_MAJOR=14
2022-04-05 04:22:04 UTC/bin/sh -c #(nop) ENV PG_VERSION=14.2
2022-04-05 04:22:05 UTC/bin/sh -c #(nop) ENV PG_SHA256=2cf78b2e468912f8101d695db5340cf313c2e9f68a612fb71427524e8c9a977a
2022-04-05 04:25:17 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-04-05 04:25:18 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
2022-04-05 04:25:19 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-04-05 04:25:20 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-04-05 04:25:21 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-04-05 04:25:22 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-04-05 04:25:24 UTC/bin/sh -c #(nop) COPY file:e8928645623137de410cce68a2aa3b22f07a64e6391025598a60f3e461c606a3 in /usr/local/bin/
2022-04-05 04:25:24 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-04-05 04:25:25 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-04-05 04:25:26 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-04-05 04:25:27 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-04-11 17:10:35 UTC (buildkit.dockerfile.v0)ARG OSS_ONLY
2022-04-11 17:10:35 UTC (buildkit.dockerfile.v0)LABEL maintainer=Timescale https://www.timescale.com
2022-04-11 17:10:35 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
2022-04-11 17:16:41 UTC (buildkit.dockerfile.v0)COPY /go/bin/* /usr/local/bin/ # buildkit
2022-04-11 17:16:41 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
2022-04-11 17:16:41 UTC (buildkit.dockerfile.v0)COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
2022-04-11 17:16:41 UTC (buildkit.dockerfile.v0)ARG TS_VERSION
2022-04-11 17:29:19 UTC (buildkit.dockerfile.v0)RUN |2 OSS_ONLY= -DAPACHE_ONLY=1 TS_VERSION=2.6.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 krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_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.