Namespace
timescale
Image / Tag
timescaledb:1.0.0-rc1-pg10
Content Digest
sha256:fc7958711e39be841e29e6b4304fa22a89bcdfd84434dfdd8ac16fd3c79e1f7c
Pull command
Details
Created

2018-10-02 15:40:02 UTC

Size

31.1 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

6c8e616c91a45142b85c0aeb1f29ebba4a361309e86469e0fb4617b6a73c4011

PG_VERSION

10.5

TIMESCALEDB_VERSION

1.0.0-rc1


Layers

[#000] sha256:8e3ba11ec2a2b39ab372c60c16b421536e50e5ce64a0bc81765c2e38381bcff6 - 6.78% (2.1 MB)

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

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

[#003] sha256:3366f4431cb1c3291263ee166de1f822044dee46e8fe9933182e3047312b119e - 83.74% (26 MB)

[#004] sha256:cc2b814f42c035c506c28048ff40a98905a960a796bcf8b1ca5c9ac7cce10fcc - 0.02% (7.1 KB)

[#005] sha256:7c215b023fa74002a2a9b39ca38ccd35ea368dea40135aeda3d3ae7d44d741f4 - 0.0% (128 Bytes)

[#006] sha256:b9c47fb574edd253632f57b9b16d04d5db432143ae763f43af13e34ca75de810 - 0.0% (171 Bytes)

[#007] sha256:42fda00273266fcf0ea419ecf94e868539f9f49ba0daa81d6ee666f0aeab29a5 - 0.01% (2.2 KB)

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

[#009] sha256:f782e50a65c47bee3c3e6766434c431740461006233dd4b187340b7e31a89152 - 0.0% (447 Bytes)

[#010] sha256:ddc2541bdda5f28acf2394bf5dd20f82947f5c14c5823d9fa4b22adbb83eec22 - 0.0% (250 Bytes)

[#011] sha256:2278e1d348fd072f41692525e285b487a9da662c73141b4260dd52d69000bc2a - 9.45% (2.93 MB)


History
2018-07-06 14:14:06 UTC

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

2018-07-06 14:14:06 UTC

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

2018-08-30 22:08:33 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"

2018-08-30 22:08:33 UTC

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

2018-08-30 22:08:34 UTC

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

2018-08-30 22:12:58 UTC

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

2018-08-30 22:12:58 UTC

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

2018-08-30 22:12:58 UTC

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

2018-08-30 22:15: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

2018-08-30 22:15:49 UTC

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

2018-08-30 22:15:50 UTC

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

2018-08-30 22:15:50 UTC

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

2018-08-30 22:15:51 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2018-08-30 22:15:51 UTC

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

2018-08-30 22:15:51 UTC

/bin/sh -c #(nop) COPY file:86ac8c6f9b02a25651114cb226da72e718a9cacfa324b01f169bfe88e0027aec in /usr/local/bin/

2018-08-30 22:15:52 UTC

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

2018-08-30 22:15:52 UTC

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

2018-08-30 22:15:52 UTC

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

2018-08-30 22:15:52 UTC

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

2018-09-10 20:42:53 UTC

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

2018-09-12 12:03:51 UTC

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

2018-10-02 15:39:43 UTC

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

2018-10-02 15:39:44 UTC

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

2018-10-02 15:40:02 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl openssl-dev tar && mkdir -p /build/timescaledb && wget -O /timescaledb.tar.gz https://github.com/timescale/timescaledb/archive/$TIMESCALEDB_VERSION.tar.gz && tar -C /build/timescaledb --strip-components 1 -zxf /timescaledb.tar.gz && rm -f /timescaledb.tar.gz && apk add --no-cache --virtual .build-deps coreutils dpkg-dev dpkg gcc libc-dev make cmake util-linux-dev && cd /build/timescaledb && ./bootstrap -DPROJECT_INSTALL_METHOD="docker" && 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