Namespace
library
Image / Tag
postgres:13.3-alpine3.14
Content Digest
sha256:19137f3286bfe01e3eb632c61e0508fb3fbec8ad7076d97195a60f21f7544f5b
Details
Created

2021-08-06 21:59:50 UTC

Size

76.8 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

13

PG_SHA256

3cd9454fa8c7a6255b6743b767700925ead1b9ab0d7a0f9dcb1151010f8eb4a1

PG_VERSION

13.3


Layers

[#000] sha256:935703e1179e32e201e4a36d5664d58299dc8e7bcac197b70c295c0a59216db1 - 3.5% (2.69 MB)

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

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

[#003] sha256:449fbe464ee6be99573dced5a50916a2f16f2e40f5df1b23c013b837dba960b7 - 96.48% (74.1 MB)

[#004] sha256:bd5a5ccd8f38ecb6cf28037db971b0607b469d30a6490b9e786ec1b730b92c15 - 0.01% (8.79 KB)

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

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

[#007] sha256:0eb31f3608c8da1d81bda5b15a10d34d05ac9b315af132ab81842efe15571a39 - 0.01% (4.3 KB)


History
2021-08-06 17:38:26 UTC

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

2021-08-06 17:38:26 UTC

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

2021-08-06 21:44:56 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-08-06 21:44:57 UTC

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

2021-08-06 21:44:57 UTC

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

2021-08-06 21:52:46 UTC

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

2021-08-06 21:52:47 UTC

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

2021-08-06 21:52:47 UTC

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

2021-08-06 21:59:46 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 llvm11-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-08-06 21:59:47 UTC

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

2021-08-06 21:59:48 UTC

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

2021-08-06 21:59:48 UTC

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

2021-08-06 21:59:49 UTC

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

2021-08-06 21:59:49 UTC

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

2021-08-06 21:59:50 UTC

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

2021-08-06 21:59:50 UTC

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

2021-08-06 21:59:50 UTC

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

2021-08-06 21:59:50 UTC

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

2021-08-06 21:59:50 UTC

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

Details
Created

2021-08-06 20:23:59 UTC

Size

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

13

PG_SHA256

3cd9454fa8c7a6255b6743b767700925ead1b9ab0d7a0f9dcb1151010f8eb4a1

PG_VERSION

13.3


Layers

[#000] sha256:29291e31a76a7e560b9b7ad3cada56e8c18d50a96cca8a2573e4f4689d7aca77 - 3.71% (2.68 MB)

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

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

[#003] sha256:0d265a24fb7184b0cbfd99c6df2aab17e93a603d088cb43b1a30e3c290a144ae - 96.27% (69.6 MB)

[#004] sha256:06559c1681e88685fc3315acf6ae2cc063d5f282b0d7a6036b8acd20a96fd6f7 - 0.01% (8.8 KB)

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

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

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


History
2021-08-06 17:19:45 UTC

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

2021-08-06 17:19:45 UTC

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

2021-08-06 20:09:36 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-08-06 20:09:36 UTC

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

2021-08-06 20:09:37 UTC

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

2021-08-06 20:16:23 UTC

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

2021-08-06 20:16:24 UTC

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

2021-08-06 20:16:24 UTC

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

2021-08-06 20:23:54 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 llvm11-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-08-06 20:23:55 UTC

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

2021-08-06 20:23:56 UTC

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

2021-08-06 20:23:57 UTC

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

2021-08-06 20:23:57 UTC

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

2021-08-06 20:23:58 UTC

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

2021-08-06 20:23:58 UTC

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

2021-08-06 20:23:58 UTC

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

2021-08-06 20:23:59 UTC

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

2021-08-06 20:23:59 UTC

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

2021-08-06 20:23:59 UTC

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

Details
Created

2021-08-06 21:44:42 UTC

Size

70.9 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

13

PG_SHA256

3cd9454fa8c7a6255b6743b767700925ead1b9ab0d7a0f9dcb1151010f8eb4a1

PG_VERSION

13.3


Layers

[#000] sha256:f465bb3e9fcd0c42f936ecc566c6e40353c00f3089b2b2c2ea1663c30f89d3ab - 3.53% (2.5 MB)

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

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

[#003] sha256:acafdd875db3514c9d50d3e55105222405581e358af7993f47ec9bbf1f6aff3a - 96.45% (68.4 MB)

[#004] sha256:cd3546cc3cccc326b5433724b0b5746fe3c959028019f4c805ef75533890ffb3 - 0.01% (8.8 KB)

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

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

[#007] sha256:59fa7fce5ded305e6255a821eacb04c64c752b193d1cda653ae8560b8ba8f59a - 0.01% (4.3 KB)


History
2021-08-06 17:49:32 UTC

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

2021-08-06 17:49:32 UTC

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

2021-08-06 21:34:10 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-08-06 21:34:11 UTC

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

2021-08-06 21:34:12 UTC

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

2021-08-06 21:39:44 UTC

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

2021-08-06 21:39:45 UTC

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

2021-08-06 21:39:45 UTC

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

2021-08-06 21:44:32 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm11-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-08-06 21:44:34 UTC

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

2021-08-06 21:44:36 UTC

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

2021-08-06 21:44:37 UTC

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

2021-08-06 21:44:39 UTC

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

2021-08-06 21:44:39 UTC

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

2021-08-06 21:44:40 UTC

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

2021-08-06 21:44:41 UTC

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

2021-08-06 21:44:41 UTC

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

2021-08-06 21:44:42 UTC

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

2021-08-06 21:44:42 UTC

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

Details
Created

2021-08-07 01:18:10 UTC

Size

66.8 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

13

PG_SHA256

3cd9454fa8c7a6255b6743b767700925ead1b9ab0d7a0f9dcb1151010f8eb4a1

PG_VERSION

13.3


Layers

[#000] sha256:4ee0caa23b369b04827640a4be298bf4ff7bacd030c77e915f5d7fb8f987594a - 3.47% (2.32 MB)

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

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

[#003] sha256:868914e9451fbc45cb650e450b6888d4f3da61960a26155fbd47b29a02261aa9 - 96.51% (64.5 MB)

[#004] sha256:efb1a89b6f1f73f54080f4a59588403df4d3935f74483ee02291b41a452d4633 - 0.01% (8.8 KB)

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

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

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


History
2021-08-06 17:57:32 UTC

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

2021-08-06 17:57:32 UTC

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

2021-08-07 01:08:14 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-08-07 01:08:14 UTC

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

2021-08-07 01:08:16 UTC

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

2021-08-07 01:13:31 UTC

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

2021-08-07 01:13:31 UTC

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

2021-08-07 01:13:32 UTC

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

2021-08-07 01:18:01 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 llvm11-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-08-07 01:18:03 UTC

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

2021-08-07 01:18:05 UTC

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

2021-08-07 01:18:05 UTC

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

2021-08-07 01:18:07 UTC

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

2021-08-07 01:18:07 UTC

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

2021-08-07 01:18:08 UTC

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

2021-08-07 01:18:08 UTC

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

2021-08-07 01:18:09 UTC

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

2021-08-07 01:18:09 UTC

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

2021-08-07 01:18:10 UTC

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

Details
Created

2021-08-07 00:28:39 UTC

Size

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

13

PG_SHA256

3cd9454fa8c7a6255b6743b767700925ead1b9ab0d7a0f9dcb1151010f8eb4a1

PG_VERSION

13.3


Layers

[#000] sha256:fd3acdcea5682abced546ec19fb6ebee725c5184e5d91614c469c0a79e67f2d0 - 3.63% (2.59 MB)

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

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

[#003] sha256:2f0315b89145c51bf45cfb85b1b93395789cd5b93e69df5494f60b55c74ae8a7 - 96.35% (68.6 MB)

[#004] sha256:9f10784f5ec9375671c79139d935665dfc542871bb3fff738b30107c4f8f0671 - 0.01% (8.79 KB)

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

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

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


History
2021-08-06 17:39:26 UTC

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

2021-08-06 17:39:27 UTC

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

2021-08-07 00:19:26 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-08-07 00:19:26 UTC

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

2021-08-07 00:19:27 UTC

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

2021-08-07 00:24:15 UTC

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

2021-08-07 00:24:15 UTC

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

2021-08-07 00:24:15 UTC

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

2021-08-07 00:28:35 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 llvm11-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-08-07 00:28:36 UTC

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

2021-08-07 00:28:37 UTC

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

2021-08-07 00:28:37 UTC

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

2021-08-07 00:28:38 UTC

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

2021-08-07 00:28:38 UTC

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

2021-08-07 00:28:38 UTC

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

2021-08-07 00:28:38 UTC

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

2021-08-07 00:28:39 UTC

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

2021-08-07 00:28:39 UTC

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

2021-08-07 00:28:39 UTC

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

Details
Created

2021-08-07 00:51:50 UTC

Size

77 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

13

PG_SHA256

3cd9454fa8c7a6255b6743b767700925ead1b9ab0d7a0f9dcb1151010f8eb4a1

PG_VERSION

13.3


Layers

[#000] sha256:0ff902055236f70c4694c806877243e1dd52c513825a2a3ecc7eba8f5202acc8 - 3.48% (2.68 MB)

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

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

[#003] sha256:99f05402880e041c7f2d65200139fea3bd568ee6cbfe8116fe0d1697ac6294a3 - 96.5% (74.3 MB)

[#004] sha256:0ff8e65c305a1638f39e4941a40b42916dc2b4a8fd243948a0f88c3613051eb9 - 0.01% (8.8 KB)

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

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

[#007] sha256:52298a7395e22fa5a7cfcdf1413d2c154749d1a94d4b16a4ab582820fb57bd5d - 0.01% (4.3 KB)


History
2021-08-06 18:28:28 UTC

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

2021-08-06 18:28:35 UTC

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

2021-08-07 00:39:16 UTC

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

2021-08-07 00:39:27 UTC

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

2021-08-07 00:39:50 UTC

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

2021-08-07 00:46:27 UTC

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

2021-08-07 00:46:29 UTC

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

2021-08-07 00:46:32 UTC

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

2021-08-07 00:50:36 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 llvm11-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-08-07 00:50:48 UTC

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

2021-08-07 00:50:55 UTC

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

2021-08-07 00:50:59 UTC

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

2021-08-07 00:51:14 UTC

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

2021-08-07 00:51:19 UTC

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

2021-08-07 00:51:23 UTC

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

2021-08-07 00:51:31 UTC

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

2021-08-07 00:51:37 UTC

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

2021-08-07 00:51:41 UTC

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

2021-08-07 00:51: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