Namespace
timescale
Image / Tag
timescaledb:1.7.0-pg10
Content Digest
sha256:457de63f83876b33a4cb4f15f5592b58211a49c853ab24122fe2986919b5f51e
Pull command
Details
Created

2020-04-17 12:06:17 UTC

Size

35.8 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7

PG_VERSION

10.12

TIMESCALEDB_VERSION

1.7.0


Layers

[#000] sha256:43f6a4398e1c9e860dfb5c93d7049ab9eedf814513bd6d07e06077c560303c7a - 7.48% (2.68 MB)

[#001] sha256:7cdf55f7a0aa0a693844419981d81c70054f4bc176f69e991a997bef43eb26b0 - 0.0% (1.22 KB)

[#002] sha256:1da5023fc51830a3c2363157395875af5c493b6c0bd05ce36d1b47771b691560 - 0.0% (115 Bytes)

[#003] sha256:1e5d46df850ded3272f9edee70d8a54732d366b3d73029fd2c5e561694e67f84 - 68.97% (24.7 MB)

[#004] sha256:39c128c524612629fabe1078a5878239c3b67f7b3685a65bd2f5d8873f8d2e87 - 0.02% (7.18 KB)

[#005] sha256:6132c290a0c959d0247523aeb23dd65fc0dc486a52922d32de3ff63cc35888dd - 0.0% (129 Bytes)

[#006] sha256:c9ba23a1c2dd44769f4445e5093ed3c7dbfc79eb2397e2fd762af31353cf9f77 - 0.0% (163 Bytes)

[#007] sha256:3fc419a66799f0b169e84e7ea976bb8a10fa5f84fda3c975cbb30e18e328eb24 - 0.01% (4.16 KB)

[#008] sha256:393e61d976cff9614e0e706f7c7111ae9e76685c41e9121c6d4baf7dd64db178 - 0.0% (121 Bytes)

[#009] sha256:48c95f543634457900ce560ef954c5bd50e52981d47b77a307930f385d272c06 - 0.01% (2.01 KB)

[#010] sha256:46a97dab2c987fd3974199a7fb3989bdd396896b97f295c9db8c68bb4e9b0780 - 15.46% (5.53 MB)

[#011] sha256:b51e5e4c546e4e4e14212fefae81285c5b8b5c344190c3cab33ac50096807bfc - 4.41% (1.58 MB)

[#012] sha256:6cbf7ea7050dae60b18cb8aed04775afd16de32bb60e43c81edbca193a29ea8e - 0.25% (90.1 KB)

[#013] sha256:6790a266d8877edb674ca41b7b394740e08b56522233ad64105344bc75485b04 - 3.39% (1.21 MB)


History
2020-03-23 21:38:28 UTC

/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:22:47 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2020-03-24 02:22:48 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.12

2020-03-24 02:22:48 UTC

/bin/sh -c #(nop) ENV PG_SHA256=388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7

2020-03-24 02:29:03 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 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 && 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:29:04 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-03-24 02:29:06 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:29:06 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2020-03-24 02:29:08 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2020-03-24 02:29:08 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2020-03-24 02:29:09 UTC

/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/

2020-03-24 02:29:10 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-03-24 02:29:11 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2020-03-24 02:29:11 UTC

/bin/sh -c #(nop) EXPOSE 5432

2020-03-24 02:29:11 UTC

/bin/sh -c #(nop) CMD ["postgres"]

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

ARG OSS_ONLY

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

MAINTAINER Timescale https://www.timescale.com

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

ENV TIMESCALEDB_VERSION=1.7.0

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit

2020-04-17 12:04:42 UTC (buildkit.dockerfile.v0)

COPY /go/bin/* /usr/local/bin/ # buildkit

2020-04-17 12:04:43 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit

2020-04-17 12:04:43 UTC (buildkit.dockerfile.v0)

COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit

2020-04-17 12:06:17 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

Details
Created

2020-04-17 12:06:02 UTC

Size

35 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7

PG_VERSION

10.12

TIMESCALEDB_VERSION

1.7.0


Layers

[#000] sha256:aad63a9339440e7c3e1fff2b988991b9bfb81280042fa7f39a5e327023056819 - 7.65% (2.67 MB)

[#001] sha256:a5b4c973b808455b5a0f405abb1ae54c769bf4a42a7af686fc96b4469b3444e5 - 0.0% (1.22 KB)

[#002] sha256:074a034a3a7aef9e887181bce1bf5fcf938f0c6d5ac8929d6139853efa4c850b - 0.0% (115 Bytes)

[#003] sha256:5ea55964e41a6ed7f6514f490ea19723fe2766926983c83ca08ec634273d80a6 - 68.2% (23.8 MB)

[#004] sha256:2023479b9c492250e4edd60e5aa9cecd01bce8d4b7a2e48b9228ee93dc509cdf - 0.02% (7.18 KB)

[#005] sha256:6c8f409318142cfd38c4a4e76c1e8970fe302af09e9caa3518f661642ff3de25 - 0.0% (129 Bytes)

[#006] sha256:4bf15ed66961b0fbc8aef9ecb3d15cd0e552a9d698263fe107f55682b327d76f - 0.0% (164 Bytes)

[#007] sha256:0b8df20c9e7db2854030eeae16e8550109af3a3ee36979de8e99b0d51a84ae8e - 0.01% (4.16 KB)

[#008] sha256:293a432afb936b0a3f710a783e4b3e54874443f5689458be5163ee36ffa1d1de - 0.0% (121 Bytes)

[#009] sha256:bb4ab520e7b489345305f3f223d2f4fa8be9e388f788d1760b8b98352beb843c - 0.01% (2.01 KB)

[#010] sha256:623fb3ce953af37fb0baf4772518eb35364005285d5715052a317929a72c9536 - 16.01% (5.59 MB)

[#011] sha256:cac0916de0de88a7381f4c9190e52f1e0f3798727505200328aac0b284ba6629 - 4.52% (1.58 MB)

[#012] sha256:1e6476b505e30602951aea5a52fb9273b9747304124e19cdd19e704239ece565 - 0.25% (90.1 KB)

[#013] sha256:981a2ff90ffb3c8c32602579756aa3a4ab064ae4387099d7309400a433f9c67a - 3.33% (1.16 MB)


History
2020-03-23 21:19:34 UTC

/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-24 00:09:34 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2020-03-24 00:09:34 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.12

2020-03-24 00:09:34 UTC

/bin/sh -c #(nop) ENV PG_SHA256=388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7

2020-03-24 00:15:33 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 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 && 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:15:35 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-03-24 00:15:37 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:15:37 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2020-03-24 00:15:39 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2020-03-24 00:15:39 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2020-03-24 00:15:40 UTC

/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/

2020-03-24 00:15:41 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-03-24 00:15:42 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2020-03-24 00:15:42 UTC

/bin/sh -c #(nop) EXPOSE 5432

2020-03-24 00:15:42 UTC

/bin/sh -c #(nop) CMD ["postgres"]

2020-04-17 12:03:27 UTC (buildkit.dockerfile.v0)

ARG OSS_ONLY

2020-04-17 12:03:27 UTC (buildkit.dockerfile.v0)

MAINTAINER Timescale https://www.timescale.com

2020-04-17 12:03:27 UTC (buildkit.dockerfile.v0)

ENV TIMESCALEDB_VERSION=1.7.0

2020-04-17 12:03:27 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit

2020-04-17 12:04:30 UTC (buildkit.dockerfile.v0)

COPY /go/bin/* /usr/local/bin/ # buildkit

2020-04-17 12:04:30 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit

2020-04-17 12:04:30 UTC (buildkit.dockerfile.v0)

COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit

2020-04-17 12:06:02 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

Details
Created

2020-04-17 12:18:12 UTC

Size

33.8 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7

PG_VERSION

10.12

TIMESCALEDB_VERSION

1.7.0


Layers

[#000] sha256:0776aeec3430c5a5ba3f43937f0ee6a7770a1fe81a318c9d94cc76512e5375e9 - 7.38% (2.5 MB)

[#001] sha256:2d97752a4ca8f8fc42bf0639a04a1c8bb9244ebdf4bf1c009b9aa4e4f5f3bcd7 - 0.0% (1.25 KB)

[#002] sha256:6ae682c8811415ca60e2e25e0806be8a3ce9ca960ca7a0d4d0b0c86a0a274956 - 0.0% (149 Bytes)

[#003] sha256:306df3dc9aad474c8e29ae4bdfdc0769874edd645b93f8b8263bb8f7bad6295c - 68.56% (23.2 MB)

[#004] sha256:29490b27a1462cb38eeb4813ab9c68f4080724204a7592fc675357aabccc8fa7 - 0.02% (7.18 KB)

[#005] sha256:1dbeff10301ac3220b9612a49bf109b3f4f85225067b78fa9d5c2b0071153fb1 - 0.0% (162 Bytes)

[#006] sha256:c7f306e9058f509c00d5d42b0cc1703a7a8507791d87abfce95ae90dd3200818 - 0.0% (195 Bytes)

[#007] sha256:6612702786314975181c76e8d6d46cf0d59126587c3f2941204d89aa7a2fb7d2 - 0.01% (4.16 KB)

[#008] sha256:dcd5a2fb9f01bd87d8bb67b88cf7fd9c0a173bad0d99322e2a13af00a1b90f77 - 0.0% (121 Bytes)

[#009] sha256:c6d6dca5161a3fb1143c45df008f68646f08486026a448c849be798d62c855b5 - 0.01% (2.01 KB)

[#010] sha256:bb48d8e29238c3691bb361e0ad7d77af0ef7f6d01c2cc1a069b0be1eceeefcc7 - 15.68% (5.3 MB)

[#011] sha256:b0015e7e9fefa7ee4662bfea61a161a4728aca806fc7e39d09c7b4a6cb4905b8 - 4.67% (1.58 MB)

[#012] sha256:9a6bd0a5961f4ff9ebade0d44a1fa5a8ac02376884208a84fba4cf18c7aebc97 - 0.26% (90 KB)

[#013] sha256:236f0d36a8d116b5e99ba4c7517cc571f9609e35afc77ccb95735eeb6b2dbfe2 - 3.41% (1.15 MB)


History
2020-03-23 21:49:26 UTC

/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:36:07 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2020-03-23 23:36:07 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.12

2020-03-23 23:36:08 UTC

/bin/sh -c #(nop) ENV PG_SHA256=388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7

2020-03-23 23:38:54 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 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 && 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:39:01 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-03-23 23:39:03 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:39:04 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2020-03-23 23:39:06 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2020-03-23 23:39:07 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2020-03-23 23:39:07 UTC

/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/

2020-03-23 23:39:09 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-03-23 23:39:10 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2020-03-23 23:39:11 UTC

/bin/sh -c #(nop) EXPOSE 5432

2020-03-23 23:39:12 UTC

/bin/sh -c #(nop) CMD ["postgres"]

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

ARG OSS_ONLY

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

MAINTAINER Timescale https://www.timescale.com

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

ENV TIMESCALEDB_VERSION=1.7.0

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit

2020-04-17 12:07:17 UTC (buildkit.dockerfile.v0)

COPY /go/bin/* /usr/local/bin/ # buildkit

2020-04-17 12:07:17 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit

2020-04-17 12:07:18 UTC (buildkit.dockerfile.v0)

COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit

2020-04-17 12:18:12 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

Details
Created

2020-04-17 12:18:31 UTC

Size

32.8 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7

PG_VERSION

10.12

TIMESCALEDB_VERSION

1.7.0


Layers

[#000] sha256:d9bf605ce3d4449f4b90035c3e21d691806324781d43a5287b1da25a01779d6b - 7.04% (2.31 MB)

[#001] sha256:d48d9b30ccc2f0daa550064546b02eddaa410c0a5ff36be31fc55c747b40e0ad - 0.0% (1.25 KB)

[#002] sha256:a59176775d1234d40a9b589b93b12933263fc13cde3b8672653317d01d4203e6 - 0.0% (149 Bytes)

[#003] sha256:b572844177acc1c5033544b4981b9729e22fa7932c68351ae32420539096f777 - 68.26% (22.4 MB)

[#004] sha256:a0c0e0f8c8b833cc88a8473b75c29c61f38d7665db723ba5679992368ad0360c - 0.02% (7.18 KB)

[#005] sha256:0a8b7f5f2c0ec08218c4c9b6083d39299aa42428e10dd6af128be0593f437d0c - 0.0% (161 Bytes)

[#006] sha256:7139e34431f626a504af36204e27f00321eb344a2d80fa1bd52e23eabe4f1e2c - 0.0% (196 Bytes)

[#007] sha256:38115a3349c5701413f1240690283b4034f4f718d07745e243b1a8bfaa497561 - 0.01% (4.16 KB)

[#008] sha256:690dd326d1d2fbeed718621f6b3c7e2c92de222942bcd4b435b8e18c89ec22cf - 0.0% (121 Bytes)

[#009] sha256:9c93fc716901447097c37447ff5e487e498be2b41c3782afb590dc8ec3d18b29 - 0.01% (2.01 KB)

[#010] sha256:4e5fc805ab360b735e17a61a168ddff560425bd3e214bde010af5f441ba8203f - 16.15% (5.3 MB)

[#011] sha256:ab534e4f30fdd29039d97ef925d99b902943408538aeeef5f1f9e359b627362a - 4.81% (1.58 MB)

[#012] sha256:3bf00ab6d6985211e646128b5278bebb1e33b74932dadf58d7d5acc77828abc1 - 0.27% (90.1 KB)

[#013] sha256:93df222e7055634fe4760f896325f24e1f0f8ea75c8c4270f91b4c45d21987aa - 3.43% (1.13 MB)


History
2020-03-23 21:57:55 UTC

/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:53:08 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2020-03-23 22:53:09 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.12

2020-03-23 22:53:10 UTC

/bin/sh -c #(nop) ENV PG_SHA256=388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7

2020-03-23 22:55:45 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 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 && 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:55:52 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-03-23 22:55:56 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:55:58 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2020-03-23 22:56:00 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2020-03-23 22:56:01 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2020-03-23 22:56:02 UTC

/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/

2020-03-23 22:56:04 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-03-23 22:56:05 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2020-03-23 22:56:06 UTC

/bin/sh -c #(nop) EXPOSE 5432

2020-03-23 22:56:07 UTC

/bin/sh -c #(nop) CMD ["postgres"]

2020-04-17 12:03:27 UTC (buildkit.dockerfile.v0)

ARG OSS_ONLY

2020-04-17 12:03:27 UTC (buildkit.dockerfile.v0)

MAINTAINER Timescale https://www.timescale.com

2020-04-17 12:03:27 UTC (buildkit.dockerfile.v0)

ENV TIMESCALEDB_VERSION=1.7.0

2020-04-17 12:03:27 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit

2020-04-17 12:06:46 UTC (buildkit.dockerfile.v0)

COPY /go/bin/* /usr/local/bin/ # buildkit

2020-04-17 12:06:46 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit

2020-04-17 12:06:46 UTC (buildkit.dockerfile.v0)

COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit

2020-04-17 12:18:31 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

Details
Created

2020-04-17 12:20:56 UTC

Size

34.4 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7

PG_VERSION

10.12

TIMESCALEDB_VERSION

1.7.0


Layers

[#000] sha256:8a0637ca1ac98db4cf29f7632449c92801adc80cf0da2cd9c9e39882ce466561 - 7.55% (2.6 MB)

[#001] sha256:7bf70ccdbfa7098e9140b79b24406b2b9d982a82a0a28d57d23a96773cb603b5 - 0.0% (1.25 KB)

[#002] sha256:6ae682c8811415ca60e2e25e0806be8a3ce9ca960ca7a0d4d0b0c86a0a274956 - 0.0% (149 Bytes)

[#003] sha256:6630ec7b0c2741cf550ba71b03db9b615b9617e57a01522b2e268ae8ab1aeaec - 68.89% (23.7 MB)

[#004] sha256:1b39d211596bb61c4fe550569b54a992c3c0e2fedb789e5bd0b04764b26c394f - 0.02% (7.18 KB)

[#005] sha256:a1e962733a230f5ef09f614abca5d26c5dd5d840368ba3f89c1eb3f9d3a5835e - 0.0% (161 Bytes)

[#006] sha256:71698752b60201a9cf917c85cae6faff8f17aa3bac09ee34fbc20ac2406e677d - 0.0% (195 Bytes)

[#007] sha256:1db13d7cc3d2faf8e8f32135cbcd963326f9fade228bac34a725726edc19550f - 0.01% (4.16 KB)

[#008] sha256:da57cab3ed220a33d3cb89997205655f07a2c1a724678e6f54e23b0a35d98f9f - 0.0% (121 Bytes)

[#009] sha256:adc2c3ef91b4e5a14874ea31e6e863a4f8f2acfd953e70279b74265596a7492f - 0.01% (2.01 KB)

[#010] sha256:e645f7db6fac4d23a6f265a9b1077a324baac1aa63de678a7cbc6188c56ab7bd - 15.32% (5.27 MB)

[#011] sha256:e66444ff48d035a34c357ddb61b5415f4844c87eaf6d048caabc98499e9e4ac9 - 4.59% (1.58 MB)

[#012] sha256:cbab88c970f10a5235e620ec7020834d4ec4c525e1b70da8e2b68cbe4ec80657 - 0.26% (90.1 KB)

[#013] sha256:b8b6b5e7e867bb262968030e0c5d1d87b1d8dae1ca80832c06481b116ca0b800 - 3.35% (1.15 MB)


History
2020-03-23 21:39:52 UTC

/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:34:14 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2020-03-23 23:34:14 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.12

2020-03-23 23:34:15 UTC

/bin/sh -c #(nop) ENV PG_SHA256=388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7

2020-03-23 23:36:51 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 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 && 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:37:00 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2020-03-23 23:37:09 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:37:11 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2020-03-23 23:37:15 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2020-03-23 23:37:16 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2020-03-23 23:37:17 UTC

/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/

2020-03-23 23:37:20 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-03-23 23:37:21 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2020-03-23 23:37:21 UTC

/bin/sh -c #(nop) EXPOSE 5432

2020-03-23 23:37:22 UTC

/bin/sh -c #(nop) CMD ["postgres"]

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

ARG OSS_ONLY

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

MAINTAINER Timescale https://www.timescale.com

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

ENV TIMESCALEDB_VERSION=1.7.0

2020-04-17 12:03:31 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit

2020-04-17 12:07:09 UTC (buildkit.dockerfile.v0)

COPY /go/bin/* /usr/local/bin/ # buildkit

2020-04-17 12:07:09 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit

2020-04-17 12:07:09 UTC (buildkit.dockerfile.v0)

COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit

2020-04-17 12:20:56 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

Danger Zone
Delete Tag

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.

Delete