Namespace
timescale
Image / Tag
timescaledb:1.3.1-pg11
Content Digest
sha256:de3a50ae130f1a79eccf749c94e9649e0eafaaae123238c398afcbf8bc4c4759
Details
Created

2019-06-10 18:31:10 UTC

Size

33.2 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

11

PG_SHA256

2a85e082fc225944821dfd23990e32dfcd2284c19060864b0ad4ca537d30522d

PG_VERSION

11.3

TIMESCALEDB_VERSION

1.3.1


Layers

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

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

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

[#003] sha256:38186ff9a63b72c48c3b45c8036f93be614dc393f3679c6f28aa3132345cf914 - 71.93% (23.9 MB)

[#004] sha256:9c94336bfd81fb98abd0007aee28659e063bedd93bd7fdab00a6775fa48d2913 - 0.02% (7.34 KB)

[#005] sha256:02ed0b49a967a5ce6ed37f0cd2fda864b91359c7e8609ec19a49a8569710e95f - 0.0% (129 Bytes)

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

[#007] sha256:79d684a466deab09ae77716d5633df043d89d060f88021b12f64d09b79e299c9 - 0.01% (2.32 KB)

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

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

[#010] sha256:c749187d783eb7545417eeef388174fb249bd7eaf00a0cb0de6b7057f3d6f522 - 14.24% (4.73 MB)

[#011] sha256:c19fc1ba898db896e363e2dcd5f5d13409ba88f10b4fcfbd9a3e8ca037501acd - 3.21% (1.07 MB)

[#012] sha256:a5f7322e672ae8ded8fb4ec2c873b77add50e343f9589ae0e0ecefe48a0313e7 - 0.24% (81.8 KB)

[#013] sha256:1d039b21d0d2b2b4ec8ee43b151576b52f09de1ecd104744f853510d8ce53675 - 2.44% (829 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:43:46 UTC

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

2019-05-11 02:43:46 UTC

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

2019-05-11 02:43:46 UTC

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

2019-05-11 02:49:48 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:49:49 UTC

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

2019-05-11 02:49:50 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:49:51 UTC

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

2019-05-11 02:49:52 UTC

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

2019-05-11 02:49:52 UTC

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

2019-05-11 02:49:52 UTC

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

2019-05-11 02:49:54 UTC

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

2019-05-11 02:49:54 UTC

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

2019-05-11 02:49:54 UTC

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

2019-05-11 02:49:54 UTC

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

2019-05-16 20:02:44 UTC

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

2019-05-16 20:02:44 UTC

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

2019-06-10 18:30:29 UTC

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

2019-06-10 18:30:30 UTC

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

2019-06-10 18:30:30 UTC

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

2019-06-10 18:30:32 UTC

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

2019-06-10 18:30:33 UTC

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

2019-06-10 18:31:10 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