Namespace
timescale
Image / Tag
timescaledb:1.6.1-pg10-oss
Content Digest
sha256:fbbb37722b777b4d4fea78ebea8fe44ee49aa2e11d6412ed5a85f08db87d1876
Pull command
Details
Created

2020-03-18 18:46:04 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.6.1


Layers

[#000] sha256:c9b1b535fdd91a9855fb7f82348177e5f019329a58c53c47272962dd60f71fc9 - 7.63% (2.67 MB)

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

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

[#003] sha256:9c8282d512e53fb2dac1162fcb9b08d653eae641761471eb2f5dd095c6f6f346 - 69.22% (24.3 MB)

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

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

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

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

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

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

[#010] sha256:0a62ab89efafbd698cb6ab82c8b58343de546514049e737499d926d4808e60c9 - 15.97% (5.59 MB)

[#011] sha256:82136d717e02d9d83ad954777661e98fda8302ae896786a9fc2b5c50e8171037 - 2.85% (1020 KB)

[#012] sha256:ec45b415a667c397ca1ebe97986862e6020ee61e67a21cfe248445b9087583b8 - 0.24% (87.1 KB)

[#013] sha256:2f4e19b796c01da45f4a45e6579f5f5fda8c1d36ce06ec1ff2f460a13ba5df36 - 4.05% (1.42 MB)


History
2020-01-18 01:19:37 UTC

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

2020-01-18 01:19:37 UTC

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

2020-02-21 03:17:19 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-02-21 03:17:19 UTC

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

2020-02-21 03:17:20 UTC

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

2020-02-21 03:34:08 UTC

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

2020-02-21 03:34:09 UTC

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

2020-02-21 03:34:09 UTC

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

2020-02-21 03:39:28 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-02-21 03:39:29 UTC

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

2020-02-21 03:39:31 UTC

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

2020-02-21 03:39:31 UTC

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

2020-02-21 03:39:32 UTC

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

2020-02-21 03:39:33 UTC

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

2020-03-04 17:35:54 UTC

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

2020-03-04 17:35:55 UTC

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

2020-03-04 17:35:55 UTC

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

2020-03-04 17:35:56 UTC

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

2020-03-04 17:35:56 UTC

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

2020-03-18 18:44:58 UTC

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

2020-03-18 18:44:58 UTC

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

2020-03-18 18:44:59 UTC

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

2020-03-18 18:44:59 UTC

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

2020-03-18 18:45:01 UTC

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

2020-03-18 18:45:03 UTC

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

2020-03-18 18:45:03 UTC

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

2020-03-18 18:46:04 UTC

|1 OSS_ONLY= -DAPACHE_ONLY=1 /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

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