Namespace
timescale
Image / Tag
timescaledb:1.5.1-pg9.6
Content Digest
sha256:10fc4b9753daf3e33ae0a4030fbeef298c75e003b481ce7238eff9fb802545b7
Details
Created

2019-11-12 18:25:36 UTC

Size

22.5 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

9.6

PG_SHA256

3cd9fe9af247167f863030842c1a57f58bdf3e5d50a94997d34a802b6032170a

PG_VERSION

9.6.15

TIMESCALEDB_VERSION

1.5.1


Layers

[#000] sha256:9d48c3bd43c520dc2784e868a780e976b207cbf493eaff8c6596eb871cbd9609 - 11.84% (2.66 MB)

[#001] sha256:f112202a5fec7dd2ff6634c1baa7a327623b5d0c105f0ad357511caa81ad5d2d - 0.0% (149 Bytes)

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

[#003] sha256:70707edd794b570c1752d9ba7337208eedb3d5166f15fd7333318b7f5544dcfc - 49.81% (11.2 MB)

[#004] sha256:0bf2f7592c42ad359f7282a619ec6c033e41046457f0d64efb23c810bc83eb95 - 0.03% (6.93 KB)

[#005] sha256:6385c2ffae93d1acd140f887050ee51ff21019d8ebeb376bd99f00a2b8022cc4 - 0.0% (130 Bytes)

[#006] sha256:e30b8f6cd7bd769b07abc3fb39e46c0bf2848b13b19803fc84b42ec533353351 - 0.0% (165 Bytes)

[#007] sha256:8229e6eee53ec5cda60f88cd8a3df9c3083b2a30e4ddd601266c1b90db82d324 - 0.01% (2.32 KB)

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

[#009] sha256:20fa7db906685b6161655ede7f182cfa1ba508eeff46f87dd10490bff05f3d48 - 0.01% (1.93 KB)

[#010] sha256:1f3233bdb80fcaf2782ff821183e9f56c00c201a899665eff64e72e22426559d - 21.05% (4.73 MB)

[#011] sha256:a8135c3c7bda58e3b76d4e89a99363cf0d9def82b99d0e60eca67035fd892b72 - 5.74% (1.29 MB)

[#012] sha256:db857b138bb3c3f1586e5c72a4cdeb23e8ceb86af2f87843b1713f389445c806 - 0.35% (81.2 KB)

[#013] sha256:cec265ec442e47c12b413d873da2b369bc2a6def8c6143542e63a878156f66f3 - 11.16% (2.51 MB)


History
2019-08-20 20:19:55 UTC

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

2019-08-20 20:19:55 UTC

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

2019-08-21 00:39:48 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-08-21 00:39:49 UTC

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

2019-08-21 00:39:49 UTC

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

2019-08-21 00:49:24 UTC

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

2019-08-21 00:49:24 UTC

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

2019-08-21 00:49:24 UTC

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

2019-08-21 00:51:57 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 && 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 && 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-08-21 00:51:58 UTC

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

2019-08-21 00:51:59 UTC

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

2019-08-21 00:51:59 UTC

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

2019-08-21 00:52:00 UTC

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

2019-08-21 00:52:00 UTC

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

2019-08-21 00:52:00 UTC

/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/

2019-08-21 00:52:01 UTC

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

2019-08-21 00:52:01 UTC

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

2019-08-21 00:52:01 UTC

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

2019-08-21 00:52:01 UTC

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

2019-08-21 20:47:35 UTC

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

2019-08-21 20:47:36 UTC

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

2019-11-12 18:06:18 UTC

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

2019-11-12 18:06:20 UTC

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

2019-11-12 18:06:23 UTC

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

2019-11-12 18:22:05 UTC

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

2019-11-12 18:22:06 UTC

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

2019-11-12 18:25:36 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 && ls -l /usr/local/lib/postgresql/timescaledb* && 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 && ls -l /usr/local/lib/postgresql/timescaledb* && 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