Namespace
timescale
Image / Tag
timescaledb:1.2.2-pg10-oss
Content Digest
sha256:595bc5291fddd9895d1b82c90c6d2785c3f9af1d4174a24e2489457c86183e27
Details
Created

2019-03-14 17:14:44 UTC

Size

33.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

10

PG_SHA256

bfed1065380c1bba927bfe51f23168471373f26e3324cbad859269cc32733ede

PG_VERSION

10.7

TIMESCALEDB_VERSION

1.2.2


Layers

[#000] sha256:8e402f1a9c577ded051c1ef10e9fe4492890459522089959988a4852dee8ab2c - 7.84% (2.63 MB)

[#001] sha256:12541ba6b2347a889b1e9e9c21d1e590162b12b29af80070c9cbbc51e3235470 - 0.0% (148 Bytes)

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

[#003] sha256:41c5b79c54a261c21e5a59cd8cc0b9b044796da33c8becc53302831ce64a43ee - 70.59% (23.7 MB)

[#004] sha256:06a0f06e7ff2badaf90830064acc63edb1d917d17927aef2234751604a961117 - 0.02% (7.13 KB)

[#005] sha256:220327ec149819ad99f47e74462026ce4a2c014cb77d06831ba3bd65f73bfd2b - 0.0% (129 Bytes)

[#006] sha256:16a91839d2ba06341955c8be61341ddb54d08b72e712660a763425ad0417d10a - 0.0% (170 Bytes)

[#007] sha256:863de4abb10f0bd6ccca5c85eecba1ec1c5b62d357b60111905c971e8f9bd8a8 - 0.01% (2.32 KB)

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

[#009] sha256:5c4bd28cc522d80891925d990e2fe4386586142d55edcb23d704225b56fa00f8 - 0.0% (1.66 KB)

[#010] sha256:29d13e593c0103def3a5e05930b2c8361ffe3b96c03ebf75eb835dd5484491a4 - 13.61% (4.56 MB)

[#011] sha256:84396c585893f3dd87b931dae2be834c548e5d0ae6afb244f27f7388879de914 - 5.51% (1.85 MB)

[#012] sha256:0f74fb0a46dc68926e5513d50ddc9b242f765d69465b791fa520efb3b97a3b8c - 0.49% (169 KB)

[#013] sha256:b5dd3f2e45ea8b534243b49090c9c619950b1bb8595fe09ce44e195eb08cbbef - 1.94% (665 KB)


History
2019-03-07 22:19:40 UTC

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

2019-03-07 22:19:40 UTC

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

2019-03-08 02:17:17 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-03-08 02:17:18 UTC

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

2019-03-08 02:17:19 UTC

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

2019-03-08 02:22:51 UTC

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

2019-03-08 02:22:51 UTC

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

2019-03-08 02:22:51 UTC

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

2019-03-08 02:28:26 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-03-08 02:28:27 UTC

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

2019-03-08 02:28:28 UTC

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

2019-03-08 02:28:28 UTC

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

2019-03-08 02:28:29 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)

2019-03-08 02:28:29 UTC

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

2019-03-08 02:28:29 UTC

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

2019-03-08 02:28:30 UTC

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

2019-03-08 02:28:30 UTC

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

2019-03-08 02:28:30 UTC

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

2019-03-08 02:28:30 UTC

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

2019-03-14 17:02:32 UTC

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

2019-03-14 17:02:32 UTC

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

2019-03-14 17:02:33 UTC

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

2019-03-14 17:02:33 UTC

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

2019-03-14 17:02:34 UTC

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

2019-03-14 17:14:22 UTC

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

2019-03-14 17:14:24 UTC

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

2019-03-14 17:14:44 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 -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