Namespace
library
Image / Tag
postgres:12-beta2-alpine
Content Digest
sha256:42cec3f5d7baa80bfb8d080c1b5d333ca24ec63524c9687d6645980bfca880ef
Details
Created

2019-07-12 03:09:48 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

1738da8e1e59d4f2dc69c216e67100c6d4dad46714cf597cc2db66077204d31f

PG_VERSION

12beta2


Layers

[#000] sha256:64a1fba56ddaccf48996ac9a3f28b6d623660aaf2d708e264e446cc834dacfab - 9.35% (2.65 MB)

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

[#002] sha256:c58f3aadd0ce5f8e6405db5e1fc91c81338b40493e656938380f7b93ec84796f - 0.0% (113 Bytes)

[#003] sha256:d8f2855b5ebcc1cdf194d8ef842d9a556a447e11748e7837f1e6dc8d77e52a51 - 90.61% (25.7 MB)

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

[#005] sha256:90757775a5f8072b05c426a5e57f79640cc0c6dc1a7555dbb99a2398d92e37c0 - 0.0% (128 Bytes)

[#006] sha256:4c0930ae6c9d2a2d60ef4fd81108b1d0effc2d66080c7d33a3074163ed21195c - 0.0% (164 Bytes)

[#007] sha256:110c595abb7887ae53a034255872166499d103630b5850cbb471e8f988d7e8c9 - 0.01% (2.31 KB)


History
2019-07-11 21:39:21 UTC

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

2019-07-11 21:39:21 UTC

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

2019-07-12 03:03:08 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-07-12 03:03:09 UTC

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

2019-07-12 03:03:10 UTC

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

2019-07-12 03:03:10 UTC

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

2019-07-12 03:03:10 UTC

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

2019-07-12 03:03:11 UTC

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

2019-07-12 03:09: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-07-12 03:09:44 UTC

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

2019-07-12 03:09:45 UTC

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

2019-07-12 03:09:46 UTC

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

2019-07-12 03:09:47 UTC

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

2019-07-12 03:09:47 UTC

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

2019-07-12 03:09:48 UTC

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

2019-07-12 03:09:48 UTC

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

2019-07-12 03:09:48 UTC

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

2019-07-12 03:09:48 UTC

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

Details
Created

2019-07-12 00:18:47 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

1738da8e1e59d4f2dc69c216e67100c6d4dad46714cf597cc2db66077204d31f

PG_VERSION

12beta2


Layers

[#000] sha256:0503825856099e6adb39c8297af09547f69684b7016b7f3680ed801aa310baaa - 9.71% (2.66 MB)

[#001] sha256:9a0b1fe656d18b0562ac6a83ff4e83a737500ad3eebdf02cb659ba559936e6fc - 0.0% (146 Bytes)

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

[#003] sha256:f58a9de51fb762cda5fdb8b1328a19e12de996dd9ac3e0c02651a3e2796f5007 - 90.25% (24.7 MB)

[#004] sha256:7408738420cbb28db69d2629e849ff3924ad157d13ee3cb8f7eb91a42539a01c - 0.03% (8.03 KB)

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

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

[#007] sha256:28e72b93ddc7e46ee0058cff00ed988f957c8f83221c164e194f41cd152ea2c9 - 0.01% (2.31 KB)


History
2019-07-11 22:20:52 UTC

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

2019-07-11 22:20:52 UTC

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

2019-07-12 00:10:59 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-07-12 00:10:59 UTC

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

2019-07-12 00:11:00 UTC

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

2019-07-12 00:11:01 UTC

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

2019-07-12 00:11:01 UTC

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

2019-07-12 00:11:01 UTC

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

2019-07-12 00:18:42 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-07-12 00:18:44 UTC

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

2019-07-12 00:18:45 UTC

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

2019-07-12 00:18:45 UTC

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

2019-07-12 00:18:46 UTC

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

2019-07-12 00:18:46 UTC

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

2019-07-12 00:18:47 UTC

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

2019-07-12 00:18:47 UTC

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

2019-07-12 00:18:47 UTC

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

2019-07-12 00:18:47 UTC

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

Details
Created

2019-07-11 22:18:12 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

1738da8e1e59d4f2dc69c216e67100c6d4dad46714cf597cc2db66077204d31f

PG_VERSION

12beta2


Layers

[#000] sha256:5308e891d68f16cb976f93556acc9b776c9534f19ede4b9c843c934e6a7b4a18 - 9.23% (2.45 MB)

[#001] sha256:ecb3defa21db4ad4070096e20b19e3cdd43a109634bba79cdda181d2f6588838 - 0.0% (179 Bytes)

[#002] sha256:6254b9d7176c0e78d8e551a707f41763cb1c778e7038513f1181940a5295b590 - 0.0% (147 Bytes)

[#003] sha256:d4adbb4fe62af763fa2a4e9ceb6d0f16dcccfb72ae0876324a9b5366c746ac64 - 90.73% (24.1 MB)

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

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

[#006] sha256:1c282c8a0e9affe57a53053aa5b959ee9f6770d0ec424b0b0439b35cc5ba68b0 - 0.0% (194 Bytes)

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


History
2019-07-11 21:49:55 UTC

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

2019-07-11 21:49:55 UTC

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

2019-07-11 22:15:23 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-07-11 22:15:25 UTC

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

2019-07-11 22:15:30 UTC

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

2019-07-11 22:15:30 UTC

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

2019-07-11 22:15:32 UTC

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

2019-07-11 22:15:35 UTC

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

2019-07-11 22:18:00 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-07-11 22:18:03 UTC

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

2019-07-11 22:18:06 UTC

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

2019-07-11 22:18:07 UTC

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

2019-07-11 22:18:09 UTC

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

2019-07-11 22:18:10 UTC

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

2019-07-11 22:18:11 UTC

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

2019-07-11 22:18:11 UTC

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

2019-07-11 22:18:12 UTC

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

2019-07-11 22:18:12 UTC

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

Details
Created

2019-08-06 00:16:03 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

1738da8e1e59d4f2dc69c216e67100c6d4dad46714cf597cc2db66077204d31f

PG_VERSION

12beta2


Layers

[#000] sha256:50e6a8f95d08735cf973d06f486e8d4906f0a8009fede2aa1b1d03accbda9281 - 8.88% (2.27 MB)

[#001] sha256:a6bd6c57d7522e713a27d9ec67ec17db670614dbce96a6898785fb11200008b6 - 0.0% (179 Bytes)

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

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

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

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

[#006] sha256:c973ffa162ced287b70de5acbad9d5f06a5c5a8b4a01bccdd81acc1d5822b69e - 0.0% (194 Bytes)

[#007] sha256:231695667b17e57aafa83f25acfad405b49305153fd89ba22ca7147cfc200454 - 0.01% (2.31 KB)


History
2019-07-11 21:57:38 UTC

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

2019-07-11 21:57:39 UTC

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

2019-08-06 00:13:55 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-08-06 00:13:55 UTC

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

2019-08-06 00:13:56 UTC

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

2019-08-06 00:13:57 UTC

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

2019-08-06 00:13:58 UTC

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

2019-08-06 00:13:58 UTC

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

2019-08-06 00:15:55 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-08-06 00:15:57 UTC

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

2019-08-06 00:15:58 UTC

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

2019-08-06 00:15:59 UTC

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

2019-08-06 00:16:01 UTC

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

2019-08-06 00:16:01 UTC

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

2019-08-06 00:16:02 UTC

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

2019-08-06 00:16:02 UTC

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

2019-08-06 00:16:03 UTC

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

2019-08-06 00:16:03 UTC

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

Details
Created

2019-06-25 19:53:45 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

1738da8e1e59d4f2dc69c216e67100c6d4dad46714cf597cc2db66077204d31f

PG_VERSION

12beta2


Layers

[#000] sha256:54e94bcddc88729dd11dea70b3489452e71c2d5f846551f59fdeb807af4319d7 - 9.48% (2.59 MB)

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

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

[#003] sha256:852bf248aa0b8213b372bf2083d88a865f7ec6e8e19b6f278fc8a915eadcf71a - 90.48% (24.7 MB)

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

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

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

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


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

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

2019-06-19 20:39:38 UTC

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

2019-06-25 19:50:50 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-25 19:50:50 UTC

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

2019-06-25 19:50:52 UTC

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

2019-06-25 19:50:52 UTC

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

2019-06-25 19:50:52 UTC

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

2019-06-25 19:50:53 UTC

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

2019-06-25 19:53:29 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-25 19:53:33 UTC

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

2019-06-25 19:53:37 UTC

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

2019-06-25 19:53:38 UTC

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

2019-06-25 19:53:41 UTC

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

2019-06-25 19:53:42 UTC

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

2019-06-25 19:53:43 UTC

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

2019-06-25 19:53:44 UTC

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

2019-06-25 19:53:45 UTC

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

2019-06-25 19:53:45 UTC

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

Details
Created

2019-07-12 00:16:37 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

1738da8e1e59d4f2dc69c216e67100c6d4dad46714cf597cc2db66077204d31f

PG_VERSION

12beta2


Layers

[#000] sha256:f4cdf4d5cd47c3a8fe7637d32e8739c247cbcefc2502104b3b9d53cf7a482ee9 - 9.32% (2.68 MB)

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

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

[#003] sha256:92d0b1fdff530dff7256d82260a80949534c33363a6b4cea09f70bc1a6593fbb - 90.64% (26 MB)

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

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

[#006] sha256:2369f4680aea8b5cc5b9cfe418c45e1b0884f1510d2f503373109a765dc8450b - 0.0% (194 Bytes)

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


History
2019-07-11 22:28:10 UTC

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

2019-07-11 22:28:13 UTC

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

2019-07-12 00:11:22 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-07-12 00:11:28 UTC

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

2019-07-12 00:11:41 UTC

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

2019-07-12 00:11:47 UTC

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

2019-07-12 00:11:50 UTC

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

2019-07-12 00:11:59 UTC

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

2019-07-12 00:15:54 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-07-12 00:16:04 UTC

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

2019-07-12 00:16:14 UTC

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

2019-07-12 00:16:18 UTC

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

2019-07-12 00:16:25 UTC

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

2019-07-12 00:16:29 UTC

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

2019-07-12 00:16:30 UTC

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

2019-07-12 00:16:32 UTC

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

2019-07-12 00:16:35 UTC

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

2019-07-12 00:16:37 UTC

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

Details
Created

2019-07-11 23:09:27 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

1738da8e1e59d4f2dc69c216e67100c6d4dad46714cf597cc2db66077204d31f

PG_VERSION

12beta2


Layers

[#000] sha256:a5009044856cb7ec46c0bdccbfae22ed15a7024bee22609e76b16cbb9436ce8a - 9.01% (2.45 MB)

[#001] sha256:5b5ac024be187dba41f2e926dec085a07102a8b78dba6e87ec81cc3fe1307fc0 - 0.0% (146 Bytes)

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

[#003] sha256:3f5cf56aa8b50153b8e789c71d33a50822af5deedcf39cb72be52dc847aad42a - 90.95% (24.7 MB)

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

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

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

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


History
2019-07-11 21:42:03 UTC

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

2019-07-11 21:42:04 UTC

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

2019-07-11 23:06: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-07-11 23:06:18 UTC

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

2019-07-11 23:06:19 UTC

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

2019-07-11 23:06:20 UTC

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

2019-07-11 23:06:20 UTC

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

2019-07-11 23:06:20 UTC

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

2019-07-11 23:09:22 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-07-11 23:09:23 UTC

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

2019-07-11 23:09:24 UTC

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

2019-07-11 23:09:25 UTC

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

2019-07-11 23:09:26 UTC

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

2019-07-11 23:09:26 UTC

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

2019-07-11 23:09:26 UTC

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

2019-07-11 23:09:26 UTC

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

2019-07-11 23:09:27 UTC

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

2019-07-11 23:09:27 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