Namespace
library
Image / Tag
postgres:12.5-alpine
Content Digest
sha256:6e36e574c7f30e7089ee07502bb227fb008c7be14b6497118829c95b5d345560
Details
Created

2021-01-29 03:29:23 UTC

Size

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

bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95

PG_VERSION

12.5


Layers

[#000] sha256:3fea00a81341ce917db671eb3ad24ef5750cb6928b7f760e3ce4dab619eeb1fa - 4.32% (2.69 MB)

[#001] sha256:6577fee13210fe1c3f4549f1ef86d700f99fac79b2fdd5b840c7e298d9ff5899 - 0.0% (1.22 KB)

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

[#003] sha256:06d67ea4aeeed0095068667b836bfa3bbb8bf553e5fe96d49e65a9b67edb5e88 - 95.65% (59.4 MB)

[#004] sha256:72352d945c7ff49a5a726891bb650d46b0b11dd0eff6faf7ccf5c2db5d598c3d - 0.01% (8.02 KB)

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

[#006] sha256:1101efeb4766624757fb3fee9aaffc7ea4cb63a2c6778c42d5171939eb0eaa15 - 0.0% (161 Bytes)

[#007] sha256:4e8b2f328aef1a53fe6a170243585b56292abf62f2c3e10ac960ae75842e1d4b - 0.01% (4.3 KB)


History
2021-01-28 23:38:31 UTC

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

2021-01-28 23:38:31 UTC

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

2021-01-29 03:03:57 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-01-29 03:03:58 UTC

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

2021-01-29 03:03:59 UTC

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

2021-01-29 03:17:31 UTC

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

2021-01-29 03:17:31 UTC

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

2021-01-29 03:17:32 UTC

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

2021-01-29 03:29:19 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ 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 --with-llvm ; 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 --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-01-29 03:29:19 UTC

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

2021-01-29 03:29:20 UTC

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

2021-01-29 03:29:20 UTC

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

2021-01-29 03:29:21 UTC

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

2021-01-29 03:29:21 UTC

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

2021-01-29 03:29:22 UTC

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

2021-01-29 03:29:22 UTC

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

2021-01-29 03:29:22 UTC

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

2021-01-29 03:29:22 UTC

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

2021-01-29 03:29:23 UTC

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

Details
Created

2021-01-29 03:11:48 UTC

Size

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

bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95

PG_VERSION

12.5


Layers

[#000] sha256:4c0d98bf9879488e0407f897d9dd4bf758555a78e39675e72b5124ccf12c2580 - 4.56% (2.68 MB)

[#001] sha256:7ff5918c11c3ab1f2763192c7c033f5dfe60b30d369a8aa483d65326974b637a - 0.0% (1.22 KB)

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

[#003] sha256:54b555ad37fe3ae162ec8f6990485f9158ed2a70dfbb86b4a5105cf7421cd3a2 - 95.41% (56.1 MB)

[#004] sha256:2278a6c81882dd8bb8bce0263e71e51b4106d3ef26fafb38830590828a643115 - 0.01% (8.02 KB)

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

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

[#007] sha256:1a1f839ed0d2f679209e0a137372abfddaf54587e6783488e1344943de512436 - 0.01% (4.3 KB)


History
2021-01-28 23:19:38 UTC

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

2021-01-28 23:19:38 UTC

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

2021-01-29 02:53:55 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-01-29 02:53:55 UTC

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

2021-01-29 02:53:56 UTC

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

2021-01-29 03:01:35 UTC

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

2021-01-29 03:01:35 UTC

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

2021-01-29 03:01:35 UTC

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

2021-01-29 03:11:39 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ 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 --with-llvm ; 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 --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-01-29 03:11:41 UTC

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

2021-01-29 03:11:43 UTC

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

2021-01-29 03:11:43 UTC

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

2021-01-29 03:11:45 UTC

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

2021-01-29 03:11:46 UTC

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

2021-01-29 03:11:46 UTC

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

2021-01-29 03:11:47 UTC

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

2021-01-29 03:11:47 UTC

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

2021-01-29 03:11:47 UTC

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

2021-01-29 03:11:48 UTC

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

Details
Created

2021-01-29 01:17:36 UTC

Size

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

bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95

PG_VERSION

12.5


Layers

[#000] sha256:a66f440da051140fefcb0a520bdeb69d763b1eb4fd1b2ed46b4c0a168e335108 - 4.37% (2.5 MB)

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

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

[#003] sha256:cf27716a17c39edad69b8fe450ec5e57ad70e16768cb1f51348fec84580e1c9d - 95.6% (54.7 MB)

[#004] sha256:137e46bf975c09851067c7f4b7bc13b3f23199b29def606df4ddea28be65f03f - 0.01% (8.01 KB)

[#005] sha256:9de675533f76a4f92b35cc4558130e88dfa3e162cfc0059246e674d0f7d4b736 - 0.0% (159 Bytes)

[#006] sha256:675a8e79b1a8ded333fc1cf4aed995f9f2b0333fbc03138c91939c2aabceda19 - 0.0% (192 Bytes)

[#007] sha256:18314d6256ef4e3dc3551ab1d52e4956670b0cae65e4452d46870e95b84e068a - 0.01% (4.3 KB)


History
2021-01-28 23:49:59 UTC

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

2021-01-28 23:49:59 UTC

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

2021-01-29 01:09:22 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-01-29 01:09:23 UTC

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

2021-01-29 01:09:25 UTC

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

2021-01-29 01:13:40 UTC

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

2021-01-29 01:13:41 UTC

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

2021-01-29 01:13:42 UTC

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

2021-01-29 01:17:25 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ 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 --with-llvm ; 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 --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-01-29 01:17:28 UTC

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

2021-01-29 01:17:30 UTC

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

2021-01-29 01:17:30 UTC

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

2021-01-29 01:17:32 UTC

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

2021-01-29 01:17:33 UTC

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

2021-01-29 01:17:33 UTC

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

2021-01-29 01:17:34 UTC

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

2021-01-29 01:17:35 UTC

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

2021-01-29 01:17:35 UTC

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

2021-01-29 01:17:36 UTC

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

Details
Created

2021-01-29 01:54:49 UTC

Size

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

bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95

PG_VERSION

12.5


Layers

[#000] sha256:9b1db703a337d301b1d50292acfbabd5fb3796511b962410c554420b85cd78dc - 4.25% (2.31 MB)

[#001] sha256:e7fa668b3d0ed9168e26ae186f3e531d3ae1e280d94f950446b3683eaaab37c8 - 0.0% (1.24 KB)

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

[#003] sha256:1b70b8f2f9d3a2a2ed425f8bd8c83bc1f8569f6a9a6c236df35b48bb8f94c3ab - 95.73% (52.1 MB)

[#004] sha256:4bd8d2d64ae2749f83ff8e88a8ca6dae1b267c3c2a601e3edb89a9dfd040b1b1 - 0.01% (8.02 KB)

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

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

[#007] sha256:7d1db4aca4242f208741d54686dab07c6a63f0ced28533ba3d33411b96363491 - 0.01% (4.3 KB)


History
2021-01-28 23:58:03 UTC

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

2021-01-28 23:58:04 UTC

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

2021-01-29 01:46:41 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-01-29 01:46:42 UTC

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

2021-01-29 01:46:44 UTC

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

2021-01-29 01:51:08 UTC

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

2021-01-29 01:51:09 UTC

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

2021-01-29 01:51:10 UTC

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

2021-01-29 01:54:31 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ 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 --with-llvm ; 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 --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-01-29 01:54:34 UTC

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

2021-01-29 01:54:37 UTC

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

2021-01-29 01:54:40 UTC

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

2021-01-29 01:54:43 UTC

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

2021-01-29 01:54:44 UTC

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

2021-01-29 01:54:45 UTC

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

2021-01-29 01:54:46 UTC

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

2021-01-29 01:54:47 UTC

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

2021-01-29 01:54:48 UTC

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

2021-01-29 01:54:49 UTC

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

Details
Created

2021-01-29 01:00:20 UTC

Size

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

bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95

PG_VERSION

12.5


Layers

[#000] sha256:2914792bc417803b2106001990194cc00cdd4b6fd97cd21a368f26148bc8e722 - 4.45% (2.59 MB)

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

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

[#003] sha256:63287ead0e86f564b727f983763711773cf62527791c57a738c5d6f0e6ed5419 - 95.52% (55.5 MB)

[#004] sha256:4b5460735eddbd6b6b248a4801de1fdbbe333f24e2b0e1c5df429a0f3599bbbc - 0.01% (8.01 KB)

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

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

[#007] sha256:390dd6fbf81e8ceefb931171c5764ee468f5f8e32acb10eb3328b7d66a79e396 - 0.01% (4.3 KB)


History
2021-01-28 23:39:33 UTC

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

2021-01-28 23:39:34 UTC

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

2021-01-29 00:52:23 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-01-29 00:52:24 UTC

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

2021-01-29 00:52:26 UTC

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

2021-01-29 00:56:34 UTC

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

2021-01-29 00:56:35 UTC

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

2021-01-29 00:56:36 UTC

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

2021-01-29 01:00:06 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ 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 --with-llvm ; 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 --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-01-29 01:00:09 UTC

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

2021-01-29 01:00:12 UTC

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

2021-01-29 01:00:12 UTC

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

2021-01-29 01:00:15 UTC

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

2021-01-29 01:00:16 UTC

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

2021-01-29 01:00:17 UTC

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

2021-01-29 01:00:18 UTC

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

2021-01-29 01:00:19 UTC

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

2021-01-29 01:00:20 UTC

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

2021-01-29 01:00:20 UTC

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

Details
Created

2021-01-29 02:02:37 UTC

Size

61 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

bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95

PG_VERSION

12.5


Layers

[#000] sha256:f3b94a1d8d591af02f1b419642bee91066ecbb9c65099d6903deed310fd1c2ff - 4.4% (2.68 MB)

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

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

[#003] sha256:c09d293792d50434549d0bb17dc9d332bac5863499e997793d8a56db7c3eda8a - 95.58% (58.3 MB)

[#004] sha256:f913bec7ebe2f1d924c7c574d707bb5ecf74f122fa009d3d4a3b28bcae74f0c0 - 0.01% (8.02 KB)

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

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

[#007] sha256:2ac15dae23d61c0eb456f0bcd548f3a1d09ee496d384a3e2e958297c32b7de30 - 0.01% (4.3 KB)


History
2021-01-28 23:55:50 UTC

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

2021-01-28 23:55:52 UTC

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

2021-01-29 01:48:47 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-01-29 01:48:55 UTC

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

2021-01-29 01:49:10 UTC

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

2021-01-29 01:55:55 UTC

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

2021-01-29 01:56:05 UTC

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

2021-01-29 01:56:12 UTC

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

2021-01-29 02:00:34 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ 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 --with-llvm ; 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 --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-01-29 02:01:06 UTC

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

2021-01-29 02:01:30 UTC

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

2021-01-29 02:01:34 UTC

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

2021-01-29 02:01:43 UTC

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

2021-01-29 02:01:57 UTC

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

2021-01-29 02:02:01 UTC

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

2021-01-29 02:02:06 UTC

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

2021-01-29 02:02:15 UTC

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

2021-01-29 02:02:30 UTC

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

2021-01-29 02:02:37 UTC

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

Details
Created

2021-01-29 01:37:40 UTC

Size

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

bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95

PG_VERSION

12.5


Layers

[#000] sha256:43901f1af0ef9db6b0bf30ac6f6dacd78bf1ecfeb47ad0a93aa2370fa8e62407 - 4.05% (2.48 MB)

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

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

[#003] sha256:1e6b120532517fed3878855c0efab7d2f097d194b9ac69dc171cf94bbde299a3 - 95.93% (58.8 MB)

[#004] sha256:c0c1192f686294768a89edaf62a3179a0bf3dc1fa5c9d1e8abad825bdf1c62e9 - 0.01% (8.02 KB)

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

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

[#007] sha256:1bb6da8610c12814a6374b15757c6cabb0e5e39c720d57d68b1bfd0e986481e2 - 0.01% (4.3 KB)


History
2021-01-28 23:41:35 UTC

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

2021-01-28 23:41:36 UTC

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

2021-01-29 01:28:50 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2021-01-29 01:28:50 UTC

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

2021-01-29 01:28:52 UTC

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

2021-01-29 01:33:30 UTC

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

2021-01-29 01:33:30 UTC

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

2021-01-29 01:33:31 UTC

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

2021-01-29 01:37:27 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ 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 --with-llvm ; 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 --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-01-29 01:37:34 UTC

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

2021-01-29 01:37:36 UTC

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

2021-01-29 01:37:36 UTC

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

2021-01-29 01:37:37 UTC

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

2021-01-29 01:37:38 UTC

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

2021-01-29 01:37:38 UTC

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

2021-01-29 01:37:39 UTC

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

2021-01-29 01:37:39 UTC

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

2021-01-29 01:37:40 UTC

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

2021-01-29 01:37:40 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