Namespace
library
Image / Tag
postgres:12-beta1-alpine
Content Digest
sha256:9e5085f79d0f5a98a531cef4312917c06ed2ba8b4764e20c050e2524957b266a
Details
Created

2019-06-04 20:47:29 UTC

Size

27.9 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

12

PG_SHA256

203e2d0151d75e3328a6b6b85eae88e50168ae27423b39787cea595365da9fad

PG_VERSION

12beta1


Layers

[#000] sha256:d0c434c0359e2da36b788ae4f5a3a70015d83ee20070aa412e714c7feecca465 - 9.41% (2.62 MB)

[#001] sha256:59abaccdd77df92face9cf6ca594b115a700cac27f4370b2dcd8b899c7dc4f80 - 0.0% (147 Bytes)

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

[#003] sha256:ab8f6803a3ed0fb87dcc07edab1586ecbe8962124afffd18f5addf40e68ce822 - 90.55% (25.3 MB)

[#004] sha256:62fbe884043e297e02f043755b3290fbefb5690819051acca6a4fa22df8fa0b6 - 0.03% (8.02 KB)

[#005] sha256:223a88980d4e23f81412a440a97352fdcb4896bb4495ea84e4d0f0fcacb6a971 - 0.0% (129 Bytes)

[#006] sha256:25e046d054faacf212f1e72df4841da0544d96ee4d3e2ba8631887c0c9819cdf - 0.0% (168 Bytes)

[#007] sha256:05ab66d6190db9eeeb872a4065f088dd4cdc3840c8fd4ad3af9b7e969a75a084 - 0.01% (2.32 KB)


History
2019-05-11 10:39:25 UTC

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

2019-05-11 10:39:25 UTC

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

2019-05-11 15:31:36 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-05-11 15:31:36 UTC

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

2019-05-11 15:31:37 UTC

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

2019-06-04 20:40:55 UTC

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

2019-06-04 20:40:56 UTC

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

2019-06-04 20:40:56 UTC

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

2019-06-04 20:47:24 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

2019-06-04 20:47:25 UTC

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

2019-06-04 20:47:26 UTC

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

2019-06-04 20:47:27 UTC

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

2019-06-04 20:47:28 UTC

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

2019-06-04 20:47:28 UTC

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

2019-06-04 20:47:28 UTC

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

2019-06-04 20:47:29 UTC

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

2019-06-04 20:47:29 UTC

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

2019-06-04 20:47:29 UTC

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

Details
Created

2019-06-04 20:27:56 UTC

Size

27 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

12

PG_SHA256

203e2d0151d75e3328a6b6b85eae88e50168ae27423b39787cea595365da9fad

PG_VERSION

12beta1


Layers

[#000] sha256:e7c96db7181be991f19a9fb6975cdbbd73c65f4a2681348e63a141a2192a5f10 - 9.74% (2.63 MB)

[#001] sha256:ddab92d60ba90017f12dd42d606551d002a5a0cc09be31e16105925cbfa07481 - 0.0% (147 Bytes)

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

[#003] sha256:3f22b38b13e86dbe99bb6a0eda81c44f3f3eed9280bb625ea11e8a93d89e4af8 - 90.22% (24.4 MB)

[#004] sha256:5ed39cf0f3408a4364a44eb0241cd1b30b3afcdfa54fa988b7b7fea5240a3e4e - 0.03% (8.03 KB)

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

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

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


History
2019-05-11 00:07:03 UTC

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

2019-05-11 00:07:03 UTC

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

2019-05-11 02:43:44 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-05-11 02:43:44 UTC

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

2019-05-11 02:43:45 UTC

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

2019-06-04 20:21:45 UTC

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

2019-06-04 20:21:45 UTC

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

2019-06-04 20:21:45 UTC

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

2019-06-04 20:27:52 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

2019-06-04 20:27:53 UTC

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

2019-06-04 20:27:54 UTC

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

2019-06-04 20:27:54 UTC

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

2019-06-04 20:27:55 UTC

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

2019-06-04 20:27:55 UTC

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

2019-06-04 20:27:56 UTC

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

2019-06-04 20:27:56 UTC

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

2019-06-04 20:27:56 UTC

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

2019-06-04 20:27:56 UTC

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

Details
Created

2019-06-04 20:51:54 UTC

Size

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

12

PG_SHA256

203e2d0151d75e3328a6b6b85eae88e50168ae27423b39787cea595365da9fad

PG_VERSION

12beta1


Layers

[#000] sha256:6e39823df636e42cc4ea056843af98c9bec31b5ae0a75cdc5628cd19b589189c - 9.28% (2.43 MB)

[#001] sha256:a40067f00f6272b4ee3ced6fe442909565af7511237b288ac04f07ec071b2e27 - 0.0% (177 Bytes)

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

[#003] sha256:52add281a65ab9c18d197ca30106a07fa063b29f3e2dc1707a9b53a7a7386b43 - 90.68% (23.7 MB)

[#004] sha256:21eed8fe39abb876e50ffc4d6ce6996d4f95c27d966596356d62c27490cca337 - 0.03% (8.03 KB)

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

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

[#007] sha256:4863480c1eb8eb648d5342437e58b33d5f361005041459b99f5b390fa81ac19f - 0.01% (2.32 KB)


History
2019-05-11 07:49:31 UTC

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

2019-05-11 07:49:31 UTC

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

2019-05-11 09:00: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-05-11 09:00:49 UTC

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

2019-05-11 09:00:50 UTC

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

2019-06-04 20:49:33 UTC

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

2019-06-04 20:49:34 UTC

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

2019-06-04 20:49:34 UTC

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

2019-06-04 20:51:43 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

2019-06-04 20:51:45 UTC

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

2019-06-04 20:51:47 UTC

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

2019-06-04 20:51:47 UTC

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

2019-06-04 20:51:50 UTC

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

2019-06-04 20:51:51 UTC

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

2019-06-04 20:51:52 UTC

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

2019-06-04 20:51:53 UTC

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

2019-06-04 20:51:53 UTC

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

2019-06-04 20:51:54 UTC

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

Details
Created

2019-06-04 21:31:25 UTC

Size

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

12

PG_SHA256

203e2d0151d75e3328a6b6b85eae88e50168ae27423b39787cea595365da9fad

PG_VERSION

12beta1


Layers

[#000] sha256:856f4240f8dba160c5323506c1e9a4dbaaca840bf1b0c244af3b8d1b42b0f43b - 8.93% (2.24 MB)

[#001] sha256:f75ddb9311b604ba4812721c497434892efb88706cc9aebdd3e3e84b5e1133b2 - 0.0% (178 Bytes)

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

[#003] sha256:92443ee689315d72f98a22b8bd3af784309103b07f5d7fdae98ef0d86927105c - 91.03% (22.9 MB)

[#004] sha256:25a6a7686111b9332bf644c8135471b42a2f6b061c07063714c383692dd30cb0 - 0.03% (8.03 KB)

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

[#006] sha256:04a8db79f05b6f5bce3f4b6b04c35a06910f01dc50bd6160bd6f22e9aabd94f6 - 0.0% (199 Bytes)

[#007] sha256:3281e74a2d821e1a37507021e2aabc3c9f9840c87605f203e9567db22a1a4723 - 0.01% (2.31 KB)


History
2019-05-11 11:57:33 UTC

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

2019-05-11 11:57:34 UTC

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

2019-05-11 12:56:11 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-05-11 12:56:11 UTC

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

2019-05-11 12:56:13 UTC

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

2019-06-04 21:28:42 UTC

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

2019-06-04 21:28:43 UTC

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

2019-06-04 21:28:43 UTC

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

2019-06-04 21:31:17 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

2019-06-04 21:31:20 UTC

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

2019-06-04 21:31:21 UTC

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

2019-06-04 21:31:22 UTC

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

2019-06-04 21:31:23 UTC

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

2019-06-04 21:31:23 UTC

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

2019-06-04 21:31:24 UTC

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

2019-06-04 21:31:24 UTC

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

2019-06-04 21:31:24 UTC

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

2019-06-04 21:31:25 UTC

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

Details
Created

2019-06-19 23:16:36 UTC

Size

26.9 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

12

PG_SHA256

203e2d0151d75e3328a6b6b85eae88e50168ae27423b39787cea595365da9fad

PG_VERSION

12beta1


Layers

[#000] sha256:0362ad1dd800a9d92f8982fa28f173f9120266153830f990f7486f44b068968a - 9.54% (2.56 MB)

[#001] sha256:288d38dc2b23a4921b8bada77743a7e933f727a406509d08754562d18d126202 - 0.0% (180 Bytes)

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

[#003] sha256:149cade768326f2dc55087babddcfe17e6ed8a722e709004adbba2135b54446f - 90.42% (24.3 MB)

[#004] sha256:cf2399a2324b8bacc826bd6d0374c204664c546a27fbeb31e87882ae9970b983 - 0.03% (8.02 KB)

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

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

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


History
2019-06-19 20:39:47 UTC

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

2019-06-19 20:39:47 UTC

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

2019-06-19 23:13:56 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-06-19 23:13:57 UTC

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

2019-06-19 23:13:58 UTC

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

2019-06-19 23:13:59 UTC

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

2019-06-19 23:13:59 UTC

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

2019-06-19 23:13:59 UTC

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

2019-06-19 23:16:27 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

2019-06-19 23:16:29 UTC

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

2019-06-19 23:16:31 UTC

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

2019-06-19 23:16:32 UTC

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

2019-06-19 23:16:33 UTC

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

2019-06-19 23:16:34 UTC

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

2019-06-19 23:16:34 UTC

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

2019-06-19 23:16:35 UTC

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

2019-06-19 23:16:36 UTC

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

2019-06-19 23:16:36 UTC

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

Details
Created

2019-06-19 23:41:18 UTC

Size

28.3 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

12

PG_SHA256

203e2d0151d75e3328a6b6b85eae88e50168ae27423b39787cea595365da9fad

PG_VERSION

12beta1


Layers

[#000] sha256:221c32b360a801e69a8aac598d495aaac3512642f967704a9d9bc5d6b4b4709e - 9.37% (2.65 MB)

[#001] sha256:46b81a6a0d9bdf3b207768607b99415b72d93b6d489c64f096adc23bdc98d100 - 0.0% (181 Bytes)

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

[#003] sha256:a335d72a123823905178bca706567e919f75de8c471d49553c16caab2f436709 - 90.59% (25.6 MB)

[#004] sha256:8623121cc0055c2d1b896abefd3e3093352810111cb0533a47e0d312969a5552 - 0.03% (8.03 KB)

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

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

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


History
2019-06-19 21:20:35 UTC

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

2019-06-19 21:20:36 UTC

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

2019-06-19 23:37:18 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-06-19 23:37:20 UTC

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

2019-06-19 23:37:26 UTC

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

2019-06-19 23:37:30 UTC

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

2019-06-19 23:37:34 UTC

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

2019-06-19 23:37:36 UTC

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

2019-06-19 23:40: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 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

2019-06-19 23:40:54 UTC

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

2019-06-19 23:40:58 UTC

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

2019-06-19 23:41:00 UTC

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

2019-06-19 23:41:05 UTC

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

2019-06-19 23:41:08 UTC

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

2019-06-19 23:41:10 UTC

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

2019-06-19 23:41:12 UTC

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

2019-06-19 23:41:15 UTC

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

2019-06-19 23:41:18 UTC

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

Details
Created

2019-06-04 20:59:32 UTC

Size

26.8 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

12

PG_SHA256

203e2d0151d75e3328a6b6b85eae88e50168ae27423b39787cea595365da9fad

PG_VERSION

12beta1


Layers

[#000] sha256:bea4f04d8b33c5bd68ccb34849e615333c5ef00958b400841a03970dd2d5e9ae - 9.06% (2.43 MB)

[#001] sha256:4865e585d61883382119870b39920229ec382dca0843f11998783168258af442 - 0.0% (147 Bytes)

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

[#003] sha256:dd6a1c60849bd21a9100383b6276a413cdb9f11bf87b0a41989e89a9dbdcfa06 - 90.9% (24.3 MB)

[#004] sha256:b173ab5809bea65fb54b3bf14425413b90c0bdd73844bf5eaea8c02ef96f504f - 0.03% (8.02 KB)

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

[#006] sha256:4e20720a671d797a4f430186eee3dc3cb6c6c4e18c25c92735b0bcdacb4e112e - 0.0% (169 Bytes)

[#007] sha256:0d7ff509f846516b88cc9b52fd57cfb66d3ee9f673d5715f1054c51ab1824f4b - 0.01% (2.32 KB)


History
2019-05-11 11:41:43 UTC

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

2019-05-11 11:41:43 UTC

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

2019-05-11 12:26:28 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-05-11 12:26:29 UTC

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

2019-05-11 12:26:30 UTC

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

2019-06-04 20:56:32 UTC

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

2019-06-04 20:56:32 UTC

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

2019-06-04 20:56:33 UTC

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

2019-06-04 20:59:27 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

2019-06-04 20:59:28 UTC

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

2019-06-04 20:59:29 UTC

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

2019-06-04 20:59:30 UTC

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

2019-06-04 20:59:30 UTC

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

2019-06-04 20:59:31 UTC

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

2019-06-04 20:59:31 UTC

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

2019-06-04 20:59:31 UTC

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

2019-06-04 20:59:32 UTC

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

2019-06-04 20:59:32 UTC

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

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