Namespace
library
Image / Tag
postgres:14beta2-alpine3.14
Content Digest
sha256:6fd411ffce75175bf6e09b2ebaf5eaeb6aff2eb4fec6d1d5f8001dca1acbed77
Details
Created

2021-08-06 21:52:32 UTC

Size

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

14

PG_SHA256

ffe64a76f50a2363443c1c9dc2195138933e931e351b74fb35a7935eae7c60a5

PG_VERSION

14beta2


Layers

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

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

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

[#003] sha256:b1c1e4a4f8e36601079fd148bde7d50426642240a445bfe53845dd7c8df188f9 - 96.54% (75.6 MB)

[#004] sha256:89f2c0de2876bfee3173aee0bdd45bce6669be22e46f75190590ba19bb4553ea - 0.01% (9.01 KB)

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

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

[#007] sha256:9f0bfa1f7857609549cdc0c1075864b4b8c1233a5da20f104c434b2d1fbef693 - 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:44:58 UTC

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

2021-08-06 21:44:58 UTC

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

2021-08-06 21:44:58 UTC

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

2021-08-06 21:52:28 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 lz4-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 --with-lz4 ; 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:52:29 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:52:30 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:52:30 UTC

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

2021-08-06 21:52:31 UTC

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

2021-08-06 21:52:31 UTC

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

2021-08-06 21:52:31 UTC

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

2021-08-06 21:52:31 UTC

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

2021-08-06 21:52:32 UTC

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

2021-08-06 21:52:32 UTC

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

2021-08-06 21:52:32 UTC

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

Details
Created

2021-08-06 20:16:09 UTC

Size

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

14

PG_SHA256

ffe64a76f50a2363443c1c9dc2195138933e931e351b74fb35a7935eae7c60a5

PG_VERSION

14beta2


Layers

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

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

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

[#003] sha256:49c2161a5f51ffb4d061c58eef7efc67c3a354ba87d3c33a9a40bf6a1d8fe02e - 96.34% (71 MB)

[#004] sha256:c4645a9b11a65b8c79314534aa5aa348f92c1cd953f5a43beee999d7fbe3a8dc - 0.01% (9.01 KB)

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

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

[#007] sha256:929db4455aba178a2e3d6a3a1135733e2b29615bc71c4bfdf8b18d3fde63067a - 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:09:37 UTC

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

2021-08-06 20:09:37 UTC

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

2021-08-06 20:09:37 UTC

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

2021-08-06 20:16: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 lz4-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 --with-lz4 ; 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:16: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-06 20:16:05 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:16:05 UTC

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

2021-08-06 20:16:07 UTC

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

2021-08-06 20:16:07 UTC

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

2021-08-06 20:16:07 UTC

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

2021-08-06 20:16:08 UTC

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

2021-08-06 20:16:08 UTC

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

2021-08-06 20:16:08 UTC

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

2021-08-06 20:16:09 UTC

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

Details
Created

2021-08-06 21:39:24 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

14

PG_SHA256

ffe64a76f50a2363443c1c9dc2195138933e931e351b74fb35a7935eae7c60a5

PG_VERSION

14beta2


Layers

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

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

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

[#003] sha256:d109f57e61a4d47e3dcd9d6fa11917e8f4f5b20edc6d589fa334c92779224b5c - 96.52% (69.8 MB)

[#004] sha256:66067d1cbcbc38ec08e99d12893f8a3613fc623995ea948f3c8e786da80d58ae - 0.01% (9.01 KB)

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

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

[#007] sha256:04fddd123a5b5eca2927ebff0385739397a2f395c863fdc15eef27e5bd9391e3 - 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:34:13 UTC

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

2021-08-06 21:34:14 UTC

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

2021-08-06 21:34:14 UTC

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

2021-08-06 21:39:13 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 lz4-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 --with-lz4 ; 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:39:16 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:39:18 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:39:18 UTC

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

2021-08-06 21:39:20 UTC

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

2021-08-06 21:39:21 UTC

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

2021-08-06 21:39:22 UTC

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

2021-08-06 21:39:22 UTC

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

2021-08-06 21:39:23 UTC

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

2021-08-06 21:39:23 UTC

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

2021-08-06 21:39:24 UTC

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

Details
Created

2021-08-07 01:13:01 UTC

Size

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

14

PG_SHA256

ffe64a76f50a2363443c1c9dc2195138933e931e351b74fb35a7935eae7c60a5

PG_VERSION

14beta2


Layers

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

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

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

[#003] sha256:7a9c4ac86650975563333ed74f7de9eae27aed63ef22c09da61da2e9e09a0548 - 96.58% (65.9 MB)

[#004] sha256:2d19135889e711bc415ae40ee0d0b7c95db6aed3f1292f18d6cb7d49a7b8c174 - 0.01% (9.02 KB)

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

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

[#007] sha256:bc0639384646e3e9968d6ace4edc5500d5437ad65282434938faa1e39bd091a5 - 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:08:16 UTC

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

2021-08-07 01:08:17 UTC

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

2021-08-07 01:08:17 UTC

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

2021-08-07 01:12:52 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 lz4-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 --with-lz4 ; 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:12:54 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:12:56 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:12:56 UTC

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

2021-08-07 01:12:58 UTC

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

2021-08-07 01:12:58 UTC

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

2021-08-07 01:12:59 UTC

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

2021-08-07 01:12:59 UTC

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

2021-08-07 01:13:00 UTC

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

2021-08-07 01:13:00 UTC

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

2021-08-07 01:13:01 UTC

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

Details
Created

2021-08-07 00:23:59 UTC

Size

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

14

PG_SHA256

ffe64a76f50a2363443c1c9dc2195138933e931e351b74fb35a7935eae7c60a5

PG_VERSION

14beta2


Layers

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

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

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

[#003] sha256:7d11b5d92fbc0e03af347c2ad9e1a847715376fa4eb2f825919c193c0b326686 - 96.42% (70.1 MB)

[#004] sha256:fba12766653211bb5b2e1c2e46d2bf621b8c7d194db456a349f6869e8673aaa7 - 0.01% (9.01 KB)

[#005] sha256:63f5eca49c5df7e8af878ad3cfa8ddd0830a268390cb549ca68c991af7eaaad2 - 0.0% (160 Bytes)

[#006] sha256:27beebfdbd0ec8f7d17d60ecf2f7531cec77bccb8e33336659aee180ae78c939 - 0.0% (195 Bytes)

[#007] sha256:08a2b1f3f7f736c7be1b89502c79848aefaf3f297af9a697e5e37ce1e714fd5e - 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:19:27 UTC

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

2021-08-07 00:19:27 UTC

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

2021-08-07 00:19:27 UTC

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

2021-08-07 00:23:55 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 lz4-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 --with-lz4 ; 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:23:56 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:23:57 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:23:57 UTC

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

2021-08-07 00:23:58 UTC

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

2021-08-07 00:23:58 UTC

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

2021-08-07 00:23:58 UTC

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

2021-08-07 00:23:59 UTC

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

2021-08-07 00:23:59 UTC

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

2021-08-07 00:23:59 UTC

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

2021-08-07 00:23:59 UTC

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

Details
Created

2021-08-07 00:45:57 UTC

Size

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

14

PG_SHA256

ffe64a76f50a2363443c1c9dc2195138933e931e351b74fb35a7935eae7c60a5

PG_VERSION

14beta2


Layers

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

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

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

[#003] sha256:90cbbe48414d4138007cfa1f6376e2e3ae30b5a429da9a155d784a4231b4f0fe - 96.57% (75.8 MB)

[#004] sha256:bfe0bc8686555fc876a6c86f7e61196eb2dd88aa0992bf7f9594fcf8a5b06016 - 0.01% (9.01 KB)

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

[#006] sha256:4987610fdd253c5c72225b9ffd49a1e089c2ba618b6de117941548a8929c44eb - 0.0% (195 Bytes)

[#007] sha256:25f110ad7a2b5b9cee4bba7859ca96b4bae0f1b2a42aa4ae7494457a107e630b - 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:39:54 UTC

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

2021-08-07 00:40:01 UTC

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

2021-08-07 00:40:06 UTC

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

2021-08-07 00:44:28 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 lz4-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 --with-lz4 ; 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:44:59 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:45:11 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:45:14 UTC

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

2021-08-07 00:45:22 UTC

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

2021-08-07 00:45:25 UTC

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

2021-08-07 00:45:29 UTC

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

2021-08-07 00:45:32 UTC

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

2021-08-07 00:45:39 UTC

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

2021-08-07 00:45:46 UTC

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

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