Namespace
timescale
Image / Tag
timescaledb:2.11.1-pg15-oss
Content Digest
sha256:8c90e32cab77e0180e505d2e06dcc5dd466f93ca8505a62f4bb94dc954a2a9e1
Pull command
Details
Created

2023-06-29 11:33:23 UTC

Size

140 MB

Content Digest
Labels
  • maintainer
    Timescale https://www.timescale.com

Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

[#000] sha256:b3f50075abd13aad1cb7d8c1427aa59d7fcac88f3690d3f9c3efdbec80fd0856 - 2.2% (3.08 MB)

[#001] sha256:f77f631c668e40b7a4965970b5130639dc87f5f4fb246943d07b1e205cfb00c5 - 0.0% (1.25 KB)

[#002] sha256:ea11e3e2c7031d65bec7012c9546ac76b6600d86eeb6f98122d5103af91d13b0 - 0.0% (149 Bytes)

[#003] sha256:1b7c3de88936ea6e28534f99528bad080ce12c7188ab310f3e7f666e5d9be778 - 64.72% (90.7 MB)

[#004] sha256:3c1e1b7f3ad088b82e7d82d097e44febe86a88f45c47217110784362a68bdd28 - 0.01% (9.23 KB)

[#005] sha256:a0123ba6f3a7e99037021c4c1aa7acdbd3e981e37ce190776bbd42d72ebd4f72 - 0.0% (161 Bytes)

[#006] sha256:ecdb9e9b24d8ef8d0fb896c83edc777b8e750524eccb7e20f16cd0634b23425d - 0.0% (202 Bytes)

[#007] sha256:c2396c58f59e08d3f7a72a86bb8d11ec114e11435f57faeb71fc567a375487b1 - 0.0% (4.68 KB)

[#008] sha256:2d34db44dc43e1aa0c4e40c75f9e194e4d9e0a1c6bdefe51db1038c5e0da3e48 - 0.0% (2.05 KB)

[#009] sha256:430a887ae8bcef9c8ad1d665004b9f9277c402540bf3531094a17ed8eefce864 - 4.26% (5.97 MB)

[#010] sha256:cb0d88b54218ed5474307f1f62ba613c96cf46a2722c64ab53b5448d118d0cc9 - 14.23% (19.9 MB)

[#011] sha256:a24dece78e887581157936ac951e8ac5dc8580270b34e60fecc43e92f9a571d7 - 9.44% (13.2 MB)

[#012] sha256:429f30aa033dd34a445cfc873ee37e5f5105354faff572457708092a2124b200 - 5.14% (7.21 MB)


History
2023-06-14 22:33:22 UTC

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

2023-06-14 22:33:22 UTC

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

2023-06-14 23:06:09 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

2023-06-14 23:06:09 UTC

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

2023-06-14 23:06:10 UTC

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

2023-06-14 23:32:50 UTC

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

2023-06-14 23:32:50 UTC

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

2023-06-14 23:32:50 UTC

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

2023-06-14 23:32:50 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-06-14 23:37:52 UTC

/bin/sh -c set -eux; 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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --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-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-06-14 23:37:54 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2023-06-14 23:37:54 UTC

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

2023-06-14 23:37:54 UTC

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

2023-06-14 23:37:55 UTC

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

2023-06-14 23:37:55 UTC

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

2023-06-14 23:37:55 UTC

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

2023-06-14 23:37:55 UTC

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

2023-06-14 23:37:55 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-06-14 23:37:55 UTC

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

2023-06-14 23:37:56 UTC

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

2023-06-29 11:30:16 UTC (buildkit.dockerfile.v0)

ARG OSS_ONLY

2023-06-29 11:30:16 UTC (buildkit.dockerfile.v0)

LABEL maintainer=Timescale https://www.timescale.com

2023-06-29 11:30:16 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit

2023-06-29 11:31:12 UTC (buildkit.dockerfile.v0)

COPY /go/bin/* /usr/local/bin/ # buildkit

2023-06-29 11:31:12 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit

2023-06-29 11:31:13 UTC (buildkit.dockerfile.v0)

COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit

2023-06-29 11:31:13 UTC (buildkit.dockerfile.v0)

ARG TS_VERSION

2023-06-29 11:33:23 UTC (buildkit.dockerfile.v0)

RUN |2 OSS_ONLY= -DAPACHE_ONLY=1 TS_VERSION=2.11.1 /bin/sh -c set -ex && apk add libssl1.1 && 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 krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=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 # buildkit

Details
Created

2023-06-29 11:33:07 UTC

Size

137 MB

Content Digest
Labels
  • maintainer
    Timescale https://www.timescale.com

Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

[#000] sha256:31e352740f534f9ad170f75378a84fe453d6156e40700b882d737a8f4a6988a3 - 2.37% (3.24 MB)

[#001] sha256:d7c8ef16402f7d0f3d3c7c581b33d4ab851efed851826633154d90c08d5e1f89 - 0.0% (1.26 KB)

[#002] sha256:36cb57831f5201e337de1dd5b1fb077701af0afe39fd7fa8143f9e552eb6ae20 - 0.0% (149 Bytes)

[#003] sha256:a120e2610875f46aec6c91f34f46574d4cb6a07f9ab469247fe1affccc08a50d - 62.75% (85.8 MB)

[#004] sha256:64f9e9ad23bdf2ce610762af4d1041d79f7f48a7c3fa5a7d822cdae9295bb9b4 - 0.01% (9.23 KB)

[#005] sha256:dd2a4281faaa4ada354cc4f1a91ed4f96436ae3412597727da0abeecdb0007f5 - 0.0% (162 Bytes)

[#006] sha256:daef310ca2c66fb0048375e8b9bc35d91b315dd9903474749e5246b84bf313b2 - 0.0% (203 Bytes)

[#007] sha256:c47c060e762a35307ec4c09878a5b445789b7006f999ac186d122f99b8f9174e - 0.0% (4.67 KB)

[#008] sha256:f9e811853210ad08cc1997f1d9c7b19fcfa754d0df44a283f61fa8cdfffd5229 - 0.0% (2.05 KB)

[#009] sha256:d6b77293e363c3818b744f4e6a53c541e054446abb5f10bba916f34a962fee51 - 4.36% (5.96 MB)

[#010] sha256:67bb1f5d17b4a15f891c6a2b71b743afb7996f25040f25718b224437270119ce - 15.36% (21 MB)

[#011] sha256:a994825728cff14d696a0bd13dda15807a875bb11bb1f3b2ad5cda05d14b7f1b - 9.68% (13.2 MB)

[#012] sha256:dc085b38d72d93a837b725a02d634eab972fd40827579dfbc2335658697cfa83 - 5.48% (7.48 MB)


History
2023-06-14 20:41:58 UTC

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

2023-06-14 20:41:59 UTC

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

2023-06-14 21:10:06 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

2023-06-14 21:10:06 UTC

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

2023-06-14 21:10:07 UTC

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

2023-06-14 21:16:39 UTC

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

2023-06-14 21:16:39 UTC

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

2023-06-14 21:16:39 UTC

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

2023-06-14 21:16:39 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-06-14 21:19:21 UTC

/bin/sh -c set -eux; 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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --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-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-06-14 21:19:22 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2023-06-14 21:19:22 UTC

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

2023-06-14 21:19:22 UTC

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

2023-06-14 21:19:23 UTC

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

2023-06-14 21:19:23 UTC

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

2023-06-14 21:19:23 UTC

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

2023-06-14 21:19:23 UTC

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

2023-06-14 21:19:23 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-06-14 21:19:23 UTC

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

2023-06-14 21:19:23 UTC

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

2023-06-29 11:30:15 UTC (buildkit.dockerfile.v0)

ARG OSS_ONLY

2023-06-29 11:30:15 UTC (buildkit.dockerfile.v0)

LABEL maintainer=Timescale https://www.timescale.com

2023-06-29 11:30:15 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit

2023-06-29 11:31:05 UTC (buildkit.dockerfile.v0)

COPY /go/bin/* /usr/local/bin/ # buildkit

2023-06-29 11:31:05 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit

2023-06-29 11:31:06 UTC (buildkit.dockerfile.v0)

COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit

2023-06-29 11:31:06 UTC (buildkit.dockerfile.v0)

ARG TS_VERSION

2023-06-29 11:33:07 UTC (buildkit.dockerfile.v0)

RUN |2 OSS_ONLY= -DAPACHE_ONLY=1 TS_VERSION=2.11.1 /bin/sh -c set -ex && apk add libssl1.1 && 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 krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=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 # buildkit

Details
Created

2023-06-29 11:47:46 UTC

Size

134 MB

Content Digest
Labels
  • maintainer
    Timescale https://www.timescale.com

Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

[#000] sha256:7836be94d3024e2042069c1095caba0b391f70c4b3d34a0475a503239d73dfba - 2.23% (3 MB)

[#001] sha256:5dd788ea942919017d4b7ef0045f6562b5dedeeea5929dde74db00394b9effd7 - 0.0% (1.25 KB)

[#002] sha256:3230cb44ffa2c0e180c66587eea332cbdfa3f7b41a5ed589836a7c1924851766 - 0.0% (149 Bytes)

[#003] sha256:a2187b97fc261d6fe8cc31ae75464b8ba24d3089a1ca45f9d0289d5b2af106d2 - 63.14% (84.8 MB)

[#004] sha256:94b39bdef9c8f609124cfe095795bda6371b19afe82c41f646872040af487c75 - 0.01% (9.23 KB)

[#005] sha256:f23d74161f6182bb82b9e310df2ca282361438721f6c81c0b27d1addf37b1961 - 0.0% (161 Bytes)

[#006] sha256:1546c5d51db9b833369569424a5a30de4add57a0af31f3535191fb59aaeb7241 - 0.0% (202 Bytes)

[#007] sha256:9bc56c0bce3f493ba7432f781c44e50797a38949dbc519e198a24989b9ab97d1 - 0.0% (4.68 KB)

[#008] sha256:9f0602680945dad56843493066b430d70645c6661539b5dc022b329212c53c0b - 0.0% (2.05 KB)

[#009] sha256:217dc360eb38a701ab2b94b14d498978ab623af43e117f5742649ecb63fc2994 - 4.24% (5.69 MB)

[#010] sha256:3d9d21a0e61b41693f22f7f3fb53e212b98b32a79a02766f0ff50cc969475f1d - 15.32% (20.6 MB)

[#011] sha256:7ba70c10b2e1899401d332a641640115ceb9c89e5e173c15e7c905dd3ff8ca5c - 9.85% (13.2 MB)

[#012] sha256:0a886712e59f4951d9c7c6e0de1373a56e46c3b54208ed3dc3b0e8a3ab128988 - 5.2% (6.98 MB)


History
2023-06-14 18:49:20 UTC

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

2023-06-14 18:49:20 UTC

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

2023-06-14 18:56:23 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

2023-06-14 18:56:23 UTC

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

2023-06-14 18:56:24 UTC

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

2023-06-14 19:02:54 UTC

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

2023-06-14 19:02:54 UTC

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

2023-06-14 19:02:54 UTC

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

2023-06-14 19:02:55 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-06-14 19:06:28 UTC

/bin/sh -c set -eux; 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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --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-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-06-14 19:06:29 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2023-06-14 19:06:30 UTC

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

2023-06-14 19:06:30 UTC

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

2023-06-14 19:06:31 UTC

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

2023-06-14 19:06:31 UTC

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

2023-06-14 19:06:31 UTC

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

2023-06-14 19:06:31 UTC

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

2023-06-14 19:06:31 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-06-14 19:06:31 UTC

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

2023-06-14 19:06:31 UTC

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

2023-06-29 11:30:09 UTC (buildkit.dockerfile.v0)

ARG OSS_ONLY

2023-06-29 11:30:09 UTC (buildkit.dockerfile.v0)

LABEL maintainer=Timescale https://www.timescale.com

2023-06-29 11:30:09 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit

2023-06-29 11:35:38 UTC (buildkit.dockerfile.v0)

COPY /go/bin/* /usr/local/bin/ # buildkit

2023-06-29 11:35:38 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit

2023-06-29 11:35:38 UTC (buildkit.dockerfile.v0)

COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit

2023-06-29 11:35:38 UTC (buildkit.dockerfile.v0)

ARG TS_VERSION

2023-06-29 11:47:46 UTC (buildkit.dockerfile.v0)

RUN |2 OSS_ONLY= -DAPACHE_ONLY=1 TS_VERSION=2.11.1 /bin/sh -c set -ex && apk add libssl1.1 && 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 krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=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 # buildkit

Details
Created

2023-06-29 11:47:34 UTC

Size

129 MB

Content Digest
Labels
  • maintainer
    Timescale https://www.timescale.com

Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

[#000] sha256:633ba29fd335042456b6e2c073636f6fa30de56f1331c442914739b92a479974 - 2.14% (2.76 MB)

[#001] sha256:155d3adaf8e9e740ef1e45d7f73ef06efc5e878b63525b09762417b7cafcac7f - 0.0% (1.26 KB)

[#002] sha256:7af7b4cba8eeeb28c80a0daa8c6187451f831b2c04afc49e511b14f8d480d6de - 0.0% (147 Bytes)

[#003] sha256:38e43192ee315b18c21268d6af0a0c4ab1e37ab61489c163b13785fbe52c7357 - 61.88% (79.9 MB)

[#004] sha256:711ec062d278223d5328f7097583bb211b7db51a5bcfbc7b56090764c73d67da - 0.01% (9.23 KB)

[#005] sha256:e212b65ed6624d5223a6bb1feb9737b25f68a5158b552091e8393003690b6cc7 - 0.0% (162 Bytes)

[#006] sha256:d0b3d1fe6bf360dabbbec69fe71fe5beb6b89cb782dc3ef2abafa5c2ea396b68 - 0.0% (200 Bytes)

[#007] sha256:31db624095dbfefd3486a5cf34b8603b2100be1e17b6bf7a3f34b0b353b1e47e - 0.0% (4.68 KB)

[#008] sha256:a912663f9f6522e69324030c2d93db1a60b3d13a0f6c5f55334f641d3b58444b - 0.0% (2.05 KB)

[#009] sha256:a17ba99700ae3a507e6acd9c8e306e8ecb82c77ba94bd2413b1b4e64d7b52063 - 4.4% (5.69 MB)

[#010] sha256:824022c9ad25cb8dfaaee6d3feb3818a14e236c011fecf727e0c94f20c883f49 - 15.84% (20.5 MB)

[#011] sha256:eeacc8d36efdc72c0175307a4df962fceffcac5a26eda8092edaa6be207f1a0e - 10.24% (13.2 MB)

[#012] sha256:c89ddf7cc86dfcfef77bbe732270179ede8840105380c0f974ccc52120a5ebda - 5.48% (7.08 MB)


History
2023-06-14 22:36:15 UTC

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

2023-06-14 22:36:15 UTC

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

2023-06-14 23:22:31 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

2023-06-14 23:22:31 UTC

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

2023-06-14 23:22:32 UTC

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

2023-06-14 23:47:56 UTC

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

2023-06-14 23:47:57 UTC

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

2023-06-14 23:47:57 UTC

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

2023-06-14 23:47:57 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-06-14 23:52:05 UTC

/bin/sh -c set -eux; 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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --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-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-06-14 23:52:07 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2023-06-14 23:52:08 UTC

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

2023-06-14 23:52:08 UTC

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

2023-06-14 23:52:10 UTC

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

2023-06-14 23:52:10 UTC

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

2023-06-14 23:52:10 UTC

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

2023-06-14 23:52:10 UTC

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

2023-06-14 23:52:11 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-06-14 23:52:11 UTC

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

2023-06-14 23:52:11 UTC

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

2023-06-29 11:30:12 UTC (buildkit.dockerfile.v0)

ARG OSS_ONLY

2023-06-29 11:30:12 UTC (buildkit.dockerfile.v0)

LABEL maintainer=Timescale https://www.timescale.com

2023-06-29 11:30:12 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit

2023-06-29 11:34:50 UTC (buildkit.dockerfile.v0)

COPY /go/bin/* /usr/local/bin/ # buildkit

2023-06-29 11:34:50 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit

2023-06-29 11:34:51 UTC (buildkit.dockerfile.v0)

COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit

2023-06-29 11:34:51 UTC (buildkit.dockerfile.v0)

ARG TS_VERSION

2023-06-29 11:47:34 UTC (buildkit.dockerfile.v0)

RUN |2 OSS_ONLY= -DAPACHE_ONLY=1 TS_VERSION=2.11.1 /bin/sh -c set -ex && apk add libssl1.1 && 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 krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=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 # buildkit

Details
Created

2023-06-29 11:47:47 UTC

Size

135 MB

Content Digest
Labels
  • maintainer
    Timescale https://www.timescale.com

Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

[#000] sha256:8c6d1654570f041603f4cef49c320c8f6f3e401324913009d92a19132cbf1ac0 - 2.35% (3.18 MB)

[#001] sha256:d285f268e220aa1ae37b8ad4f59c7c59f60c721d1f433c9c58e4f9e52e814f61 - 0.0% (1.26 KB)

[#002] sha256:a4388b4d68d1c49bc6e6b54f3d73762850870a8281138568a35e656553686e84 - 0.0% (149 Bytes)

[#003] sha256:7f8d1bfa3d3b8ecfdd765bca1b09092f15e559687b1eb2d00457f81de0695196 - 62.89% (84.8 MB)

[#004] sha256:94da97297dcb30658e4bc00686daeff0be0f4e25094c2aa34a0b5da3a14c0bef - 0.01% (9.23 KB)

[#005] sha256:8262b28437857e7c409ebb0c82a614a27d59dc2b4ca196e942e816fe0cc225d0 - 0.0% (161 Bytes)

[#006] sha256:c368c6a5640472d0dbcd4c21fd51479d1f3a775f4ccbd3b91514c69146db7471 - 0.0% (201 Bytes)

[#007] sha256:60f35adbbf32ecc715f7bf9cefba71d08e20e0cdf03b93cc9a302f22d53502a4 - 0.0% (4.68 KB)

[#008] sha256:a248924bb93ac896f1aa9770ed71f657c1e89dd16d6117864f173669ff723192 - 0.0% (2.05 KB)

[#009] sha256:8c7c0c3427304370ae6d2df8f8204989ef2254c3933298547bc16c823b4a4b32 - 4.15% (5.6 MB)

[#010] sha256:2e8c59de87fd52e9e52cd804c74e3e46ca2c431238c083d6b32ec2a947a8cce7 - 15.33% (20.7 MB)

[#011] sha256:8b04d4c5ed06be6f9656166e993570453aab0d6c40d0373392b74fcd31be8806 - 9.8% (13.2 MB)

[#012] sha256:c9fa773824477c1db3e5c4392ae1363ae1f8a045b0013d5d756b8efdcebada17 - 5.46% (7.36 MB)


History
2023-06-14 20:48:58 UTC

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

2023-06-14 20:48:58 UTC

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

2023-06-14 21:02:16 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

2023-06-14 21:02:16 UTC

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

2023-06-14 21:02:16 UTC

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

2023-06-14 21:07:30 UTC

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

2023-06-14 21:07:30 UTC

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

2023-06-14 21:07:31 UTC

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

2023-06-14 21:07:31 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-06-14 21:09:32 UTC

/bin/sh -c set -eux; 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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-dev zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --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-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-06-14 21:09:34 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2023-06-14 21:09:34 UTC

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

2023-06-14 21:09:34 UTC

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

2023-06-14 21:09:35 UTC

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

2023-06-14 21:09:35 UTC

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

2023-06-14 21:09:35 UTC

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

2023-06-14 21:09:35 UTC

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

2023-06-14 21:09:35 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2023-06-14 21:09:35 UTC

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

2023-06-14 21:09:35 UTC

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

2023-06-29 11:30:10 UTC (buildkit.dockerfile.v0)

ARG OSS_ONLY

2023-06-29 11:30:10 UTC (buildkit.dockerfile.v0)

LABEL maintainer=Timescale https://www.timescale.com

2023-06-29 11:30:10 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit

2023-06-29 11:34:53 UTC (buildkit.dockerfile.v0)

COPY /go/bin/* /usr/local/bin/ # buildkit

2023-06-29 11:34:53 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit

2023-06-29 11:34:53 UTC (buildkit.dockerfile.v0)

COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit

2023-06-29 11:34:53 UTC (buildkit.dockerfile.v0)

ARG TS_VERSION

2023-06-29 11:47:47 UTC (buildkit.dockerfile.v0)

RUN |2 OSS_ONLY= -DAPACHE_ONLY=1 TS_VERSION=2.11.1 /bin/sh -c set -ex && apk add libssl1.1 && 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 krb5-dev libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TS_VERSION} && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=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 # buildkit

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