Namespace
timescale
Image / Tag
timescaledb:1.4.0-pg10
Content Digest
sha256:3461a553080a4ce94ac89409ca055c81d3e5ace2eceffe8b7c7e879aa7e5afb8
Details
Created

2019-07-18 17:04:34 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

b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

PG_VERSION

10.8

TIMESCALEDB_VERSION

1.4.0


Layers

[#000] sha256:e7c96db7181be991f19a9fb6975cdbbd73c65f4a2681348e63a141a2192a5f10 - 7.77% (2.63 MB)

[#001] sha256:ddab92d60ba90017f12dd42d606551d002a5a0cc09be31e16105925cbfa07481 - 0.0% (147 Bytes)

[#002] sha256:8c4b0e7b82b8e1bdf8e5908b08113fb98ab570336a917e5d207ad5e84130cea9 - 0.0% (115 Bytes)

[#003] sha256:41bc21c1a348cd512a01e2c9643e10e2243149619505a99791c33f8c3b684e0e - 70.02% (23.7 MB)

[#004] sha256:107b22abf83d65f999e6b5b03f3c49889324cf126e2b49f02b17d33875c9ff76 - 0.02% (7.13 KB)

[#005] sha256:493b7ad01a2b21c0120ad2330e6a8b1b6de3a650f4974465803b9d027b25f0e9 - 0.0% (129 Bytes)

[#006] sha256:4782ba84b0b1725c24f3737a493cdca3873db1365bceabbabf77c9b53863f325 - 0.0% (168 Bytes)

[#007] sha256:994b83792f78b51d601a44f9f17511563e44448609ad0d69d3ad2aee69d61a86 - 0.01% (2.32 KB)

[#008] sha256:f76f57457ae77d0b6098197bf51f688114c15a660a3b512c7b589499514fdb52 - 0.0% (118 Bytes)

[#009] sha256:152ae03c47262902283dd7e7d50a08d8f1099f6202b1b562d6995394e62835d6 - 0.01% (1.88 KB)

[#010] sha256:4b192b2cf81fa991d2e21ec290e680f26e5d4bcd064df0f826fec549e4707faa - 13.99% (4.73 MB)

[#011] sha256:6bba9fba10d2f20a2e0139370ecd6a726a624732469a35b944ec39a3a47daa11 - 5.28% (1.78 MB)

[#012] sha256:2fc009c6ad14b08642ac699823d8ac50e5df611058b755b86579d155a5928725 - 0.4% (138 KB)

[#013] sha256:bd8a44a138cc9dbc84a8a9792a0c68e78b8d4afdda49dc677ddefa3905ee44bf - 2.51% (870 KB)


History
2019-05-11 00:07:03 UTC

/bin/sh -c #(nop) ADD file:a86aea1f3a7d68f6ae03397b99ea77f2e9ee901c5c59e59f76f93adbb4035913 in /

2019-05-11 00:07:03 UTC

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

2019-05-11 02:43:44 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-05-11 02:43:44 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2019-05-11 02:43:45 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2019-05-11 02:50:04 UTC

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

2019-05-11 02:50:04 UTC

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

2019-05-11 02:50:05 UTC

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

2019-05-11 02:55:55 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 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

2019-05-11 02:55:56 UTC

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

2019-05-11 02:55:57 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2019-05-11 02:55:57 UTC

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

2019-05-11 02:55:59 UTC

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

2019-05-11 02:55:59 UTC

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

2019-05-11 02:55:59 UTC

/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/

2019-05-11 02:56:00 UTC

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

2019-05-11 02:56:00 UTC

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

2019-05-11 02:56:01 UTC

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

2019-05-11 02:56:01 UTC

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

2019-05-16 19:57:46 UTC

/bin/sh -c #(nop) ARG OSS_ONLY

2019-05-16 19:57:47 UTC

/bin/sh -c #(nop) MAINTAINER Timescale https://www.timescale.com

2019-07-18 17:02:47 UTC

/bin/sh -c #(nop) ENV TIMESCALEDB_VERSION=1.4.0

2019-07-18 17:02:48 UTC

/bin/sh -c #(nop) COPY multi:d7f5f2ecaf8bcd80d232031f24d12301b30e27cf5397fc8022d861c499f4ab26 in /docker-entrypoint-initdb.d/

2019-07-18 17:02:50 UTC

/bin/sh -c #(nop) COPY multi:b0ead9b10a7c61361825a399ab120c77c78e96cf67c253f61ed84a0a1b87161f in /usr/local/bin/

2019-07-18 17:02:54 UTC

/bin/sh -c #(nop) COPY multi:02be3557b52795b0c99fa66b7869d07aa1787806b6cc0bd8e48def114c920686 in /usr/local/lib/postgresql/

2019-07-18 17:02:57 UTC

/bin/sh -c #(nop) COPY multi:19254f2e3e6c07a4b8a28255b78e591ef6b7fb287758c1e35eb9864668a0042c in /usr/local/share/postgresql/extension/

2019-07-18 17:04:34 UTC

/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 -DPROJECT_INSTALL_METHOD="docker"${OSS_ONLY} && cd build && make install && cd ~ && 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

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