Namespace
library
Image / Tag
postgres:12.0-alpine
Content Digest
sha256:5115ec0afd378e91b5eed848a7e0ae0a9c7995fe05ad14f1eb3038bcf53acbf7
Details
Created

2019-10-22 00:45:41 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

cda2397215f758b793f741c86be05468257b0e6bcb1a6113882ab5d0df0855c6

PG_VERSION

12.0


Layers

[#000] sha256:f913bd05bf684aaa4bc173d73cfbb58abb45587962d74f0aa71df36b6b489def - 9.38% (2.66 MB)

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

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

[#003] sha256:eb394ca340ebd43bae3a71f36e781b73cd0fcf13d62188555dac8045c8e97099 - 90.59% (25.7 MB)

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

[#005] sha256:0787cc7a3c2f689b71e411117b7fafcf356c4d14e0853572215af2730ac0f2a1 - 0.0% (128 Bytes)

[#006] sha256:c14dd55d5432fc589d4c94beb1738915ee88eeb9ddb8ecee3e0d1b79c02fd335 - 0.0% (162 Bytes)

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


History
2019-10-21 16:46:04 UTC

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

2019-10-21 16:46:04 UTC

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

2019-10-22 00:38:40 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-10-22 00:38:40 UTC

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

2019-10-22 00:38:42 UTC

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

2019-10-22 00:38:42 UTC

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

2019-10-22 00:38:42 UTC

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

2019-10-22 00:38:43 UTC

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

2019-10-22 00:45:35 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-10-22 00:45:36 UTC

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

2019-10-22 00:45:38 UTC

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

2019-10-22 00:45:38 UTC

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

2019-10-22 00:45:39 UTC

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

2019-10-22 00:45:40 UTC

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

2019-10-22 00:45:40 UTC

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

2019-10-22 00:45:40 UTC

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

2019-10-22 00:45:40 UTC

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

2019-10-22 00:45:41 UTC

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

Details
Created

2019-10-21 19:22:06 UTC

Size

27.4 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

cda2397215f758b793f741c86be05468257b0e6bcb1a6113882ab5d0df0855c6

PG_VERSION

12.0


Layers

[#000] sha256:89d9c30c1d48bac627e5c6cb0d1ed1eec28e7dbdfbcc04712e4c79c0f83faf17 - 9.7% (2.66 MB)

[#001] sha256:66ddea140797e8e48dae29e9da5a02b5d5195ebd73c51f38e07d3ead76b85b1b - 0.0% (146 Bytes)

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

[#003] sha256:ba931f945c10e8eff81afca8296fdbe0f0d6f25dc6fc00ccd39690ea1f32e805 - 90.26% (24.7 MB)

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

[#005] sha256:2beee048241491a00a3d875323e15ea3bbead764ad129fec2407fb448e32391d - 0.0% (128 Bytes)

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

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


History
2019-10-21 17:21:42 UTC

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

2019-10-21 17:21:42 UTC

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

2019-10-21 19:17:31 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-10-21 19:17:31 UTC

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

2019-10-21 19:17:33 UTC

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

2019-10-21 19:17:33 UTC

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

2019-10-21 19:17:33 UTC

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

2019-10-21 19:17:33 UTC

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

2019-10-21 19:22:02 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-10-21 19:22:03 UTC

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

2019-10-21 19:22:04 UTC

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

2019-10-21 19:22:04 UTC

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

2019-10-21 19:22:05 UTC

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

2019-10-21 19:22:05 UTC

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

2019-10-21 19:22:05 UTC

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

2019-10-21 19:22:05 UTC

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

2019-10-21 19:22:06 UTC

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

2019-10-21 19:22:06 UTC

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

Details
Created

2019-10-21 20:08:50 UTC

Size

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

12

PG_SHA256

cda2397215f758b793f741c86be05468257b0e6bcb1a6113882ab5d0df0855c6

PG_VERSION

12.0


Layers

[#000] sha256:ecf664be551d26dcd221b7387283cdcc54f46c6789700d037fa3cd0c297f8645 - 9.24% (2.45 MB)

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

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

[#003] sha256:1886e95798ce0b5d614dc8f026ddf9fabfaee5759417e1912823291155e152bd - 90.72% (24.1 MB)

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

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

[#006] sha256:25e47cfc160a0157c512539a2af2d79961033ebfaddb8792f0796a421be8b5d3 - 0.0% (193 Bytes)

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


History
2019-10-21 16:56:02 UTC

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

2019-10-21 16:56:04 UTC

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

2019-10-21 20:06:30 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-10-21 20:06:31 UTC

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

2019-10-21 20:06:33 UTC

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

2019-10-21 20:06:34 UTC

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

2019-10-21 20:06:35 UTC

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

2019-10-21 20:06:36 UTC

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

2019-10-21 20:08:38 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-10-21 20:08:41 UTC

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

2019-10-21 20:08:43 UTC

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

2019-10-21 20:08:44 UTC

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

2019-10-21 20:08:46 UTC

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

2019-10-21 20:08:47 UTC

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

2019-10-21 20:08:48 UTC

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

2019-10-21 20:08:49 UTC

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

2019-10-21 20:08:50 UTC

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

2019-10-21 20:08:50 UTC

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

Details
Created

2019-10-21 20:01:55 UTC

Size

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

12

PG_SHA256

cda2397215f758b793f741c86be05468257b0e6bcb1a6113882ab5d0df0855c6

PG_VERSION

12.0


Layers

[#000] sha256:99fc70ac0b64db67086f98ceb3942600816eed98046abd6be5ad66f4614a9ca2 - 8.89% (2.27 MB)

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

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

[#003] sha256:c143cc34f42f2744e2d6563b86e8ecbd227b9d97c2c1db7f1d1cbb66188bd34c - 91.07% (23.2 MB)

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

[#005] sha256:6ff8c4a1842c3e36b378ca8da76dbeae18d90686e7d60a209a7072fe2e52dc15 - 0.0% (163 Bytes)

[#006] sha256:bf0233d7b6ef5ecc80f4f8206be412bc7f7c3034b07dae1a55a5ec89ca597635 - 0.0% (193 Bytes)

[#007] sha256:15147d8704dba085d82bb8eae40aaacccc89135879dbf5560038a220078f9ec9 - 0.01% (2.31 KB)


History
2019-10-21 18:15:18 UTC

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

2019-10-21 18:15:31 UTC

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

2019-10-21 19:59:37 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-10-21 19:59:38 UTC

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

2019-10-21 19:59:40 UTC

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

2019-10-21 19:59:41 UTC

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

2019-10-21 19:59:42 UTC

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

2019-10-21 19:59:42 UTC

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

2019-10-21 20:01:40 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-10-21 20:01:44 UTC

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

2019-10-21 20:01:47 UTC

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

2019-10-21 20:01:47 UTC

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

2019-10-21 20:01:50 UTC

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

2019-10-21 20:01:51 UTC

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

2019-10-21 20:01:51 UTC

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

2019-10-21 20:01:52 UTC

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

2019-10-21 20:01:53 UTC

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

2019-10-21 20:01:55 UTC

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

Details
Created

2019-10-21 21:00:31 UTC

Size

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

cda2397215f758b793f741c86be05468257b0e6bcb1a6113882ab5d0df0855c6

PG_VERSION

12.0


Layers

[#000] sha256:8bfa913040406727f36faa9b69d0b96e071b13792a83ad69c19389031a9f3797 - 9.49% (2.59 MB)

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

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

[#003] sha256:2d5ae190a30f2e64d2f2a4621eb12781444680f0c778825dbeefd1de2f1755c4 - 90.47% (24.7 MB)

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

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

[#006] sha256:a7d086ccf56cdc24e11379c490aa16db589eedc5c5ee835560d4af9be5287ccb - 0.0% (193 Bytes)

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


History
2019-10-21 18:07:03 UTC

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

2019-10-21 18:07:09 UTC

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

2019-10-21 20:57: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-10-21 20:57:49 UTC

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

2019-10-21 20:57:50 UTC

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

2019-10-21 20:57:51 UTC

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

2019-10-21 20:57:51 UTC

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

2019-10-21 20:57:52 UTC

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

2019-10-21 21:00:21 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-10-21 21:00:24 UTC

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

2019-10-21 21:00:25 UTC

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

2019-10-21 21:00:26 UTC

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

2019-10-21 21:00:28 UTC

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

2019-10-21 21:00:28 UTC

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

2019-10-21 21:00:29 UTC

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

2019-10-21 21:00:30 UTC

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

2019-10-21 21:00:30 UTC

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

2019-10-21 21:00:31 UTC

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

Details
Created

2019-10-21 20:47:24 UTC

Size

28.7 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

cda2397215f758b793f741c86be05468257b0e6bcb1a6113882ab5d0df0855c6

PG_VERSION

12.0


Layers

[#000] sha256:cd18d16ea896a0f0eb99be52a9722ffae9a5ac35cf28cb8b96f589352f8e71d6 - 9.33% (2.68 MB)

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

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

[#003] sha256:1f35053e107a33c5d9aa0fc3b8a9f4bb9806b5acbeeaa45601a2af0c181b322f - 90.63% (26 MB)

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

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

[#006] sha256:dae24983c4232d7dd78043212855d50a6be2c19531f642a033ed9d3677acfbdc - 0.0% (193 Bytes)

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


History
2019-10-21 17:52:55 UTC

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

2019-10-21 17:53:00 UTC

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

2019-10-21 20:43:21 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-10-21 20:43:23 UTC

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

2019-10-21 20:43:28 UTC

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

2019-10-21 20:43:31 UTC

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

2019-10-21 20:43:33 UTC

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

2019-10-21 20:43:35 UTC

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

2019-10-21 20:46:47 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-10-21 20:46:57 UTC

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

2019-10-21 20:47:04 UTC

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

2019-10-21 20:47:08 UTC

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

2019-10-21 20:47:14 UTC

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

2019-10-21 20:47:16 UTC

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

2019-10-21 20:47:17 UTC

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

2019-10-21 20:47:19 UTC

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

2019-10-21 20:47:22 UTC

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

2019-10-21 20:47:24 UTC

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

Details
Created

2019-10-21 18:36:50 UTC

Size

27.2 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

cda2397215f758b793f741c86be05468257b0e6bcb1a6113882ab5d0df0855c6

PG_VERSION

12.0


Layers

[#000] sha256:fb7172052a60e640810f01efff381654bf9ed44082461455cfcc6306d192d541 - 9.02% (2.45 MB)

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

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

[#003] sha256:ef981d75ca82394329803aded159e9f42a1179207b8b47f138590f0913e83144 - 90.94% (24.7 MB)

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

[#005] sha256:74ed34c9c3455ddf32456d4ed94cd994d653519ddeac692ef1d845b382a313e0 - 0.0% (128 Bytes)

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

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


History
2019-10-21 16:47:28 UTC

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

2019-10-21 16:47:29 UTC

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

2019-10-21 18:33:38 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-10-21 18:33:39 UTC

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

2019-10-21 18:33:40 UTC

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

2019-10-21 18:33:40 UTC

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

2019-10-21 18:33:41 UTC

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

2019-10-21 18:33:41 UTC

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

2019-10-21 18:36: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-10-21 18:36:45 UTC

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

2019-10-21 18:36:46 UTC

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

2019-10-21 18:36:47 UTC

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

2019-10-21 18:36:48 UTC

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

2019-10-21 18:36:48 UTC

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

2019-10-21 18:36:49 UTC

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

2019-10-21 18:36:49 UTC

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

2019-10-21 18:36:49 UTC

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

2019-10-21 18:36:50 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