Namespace
library
Image / Tag
postgres:10.17-alpine3.13
Content Digest
sha256:b5c858482611b150f2addb8d3df572ccdf706ed90ef2b1e22ad9a849c69bb43e
Details
Created

2021-05-14 20:23:21 UTC

Size

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

10

PG_SHA256

5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c

PG_VERSION

10.17


Layers

[#000] sha256:31b7e7ccca9e17fd08b39c9a4ffd3ded380b62816c489d6c3758c9bb5a632430 - 9.54% (2.69 MB)

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

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

[#003] sha256:c3d2b83b09ecd30810d063a466bf28d6fb7045f6f8a83391bdd916867946f11a - 90.41% (25.5 MB)

[#004] sha256:c86982592162a3624db39d5376d692523268512462cbb0b7647e0c239376f664 - 0.02% (7.19 KB)

[#005] sha256:047f8b7f08f8a1b0c28077a36c1893cfbf99f9f0b7af20d2c57b7b5f78d8ddd5 - 0.0% (160 Bytes)

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

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

[#008] sha256:01ec0c42a06296bd2ae40d2c3e722e87555e5708c1b2b1ca7abc3b4eea82649d - 0.0% (121 Bytes)


History
2021-04-14 18:38:29 UTC

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

2021-04-14 18:38:29 UTC

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

2021-04-15 06:08:09 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-04-15 06:08:09 UTC

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

2021-04-15 06:08:10 UTC

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

2021-04-15 06:25:46 UTC

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

2021-05-14 20:19:25 UTC

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

2021-05-14 20:19:25 UTC

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

2021-05-14 20:23:16 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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-05-14 20:23:17 UTC

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

2021-05-14 20:23:18 UTC

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

2021-05-14 20:23:18 UTC

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

2021-05-14 20:23:19 UTC

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

2021-05-14 20:23:19 UTC

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

2021-05-14 20:23:19 UTC

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

2021-05-14 20:23:20 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-05-14 20:23:20 UTC

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

2021-05-14 20:23:21 UTC

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

2021-05-14 20:23:21 UTC

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

2021-05-14 20:23:21 UTC

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

Details
Created

2021-05-14 20:03:34 UTC

Size

27.3 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c

PG_VERSION

10.17


Layers

[#000] sha256:540db60ca9383eac9e418f78490994d0af424aab7bf6d0e47ac8ed4e2e9bcbba - 9.83% (2.68 MB)

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

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

[#003] sha256:c1f68d0879cdeb8ec146af9e64f722d36cdca4c384ecdcef7ca8840fea3be296 - 90.12% (24.6 MB)

[#004] sha256:63f750b9ec4089c3604348ebf4f01f1f0bd1593d13a97e1969d44ef04688ef34 - 0.03% (7.19 KB)

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

[#006] sha256:25d818cc94463ee2a30415d138f07e070f4207df0a7728bcf735a142bf61e2e5 - 0.0% (195 Bytes)

[#007] sha256:60371d07a079bd40ec896a70418c52f9ea724deeef1b2993c48d16446bf27c8b - 0.02% (4.3 KB)

[#008] sha256:85a784176d3289e5f1b8a3b65bcf2c5349254c120bfa7014eb7c69f7d587f488 - 0.0% (121 Bytes)


History
2021-04-14 19:19:39 UTC

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

2021-04-14 19:19:39 UTC

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

2021-04-15 03:44:32 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-04-15 03:44:32 UTC

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

2021-04-15 03:44:33 UTC

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

2021-04-15 04:06:51 UTC

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

2021-05-14 19:59:26 UTC

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

2021-05-14 19:59:27 UTC

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

2021-05-14 20:03: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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-05-14 20:03:29 UTC

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

2021-05-14 20:03:30 UTC

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

2021-05-14 20:03:30 UTC

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

2021-05-14 20:03:31 UTC

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

2021-05-14 20:03:32 UTC

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

2021-05-14 20:03:32 UTC

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

2021-05-14 20:03:33 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-05-14 20:03:33 UTC

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

2021-05-14 20:03:33 UTC

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

2021-05-14 20:03:34 UTC

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

2021-05-14 20:03:34 UTC

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

Details
Created

2021-07-12 23:36:36 UTC

Size

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

10

PG_SHA256

5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c

PG_VERSION

10.17


Layers

[#000] sha256:740c950346cf39c85b52576998695c9b909c24a58a8bb1b64cce91fda3ef1d3a - 9.32% (2.5 MB)

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

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

[#003] sha256:d9a559cb8d6c681f42527b7d018b73bd9792743df31ea4f5490f06e865044c17 - 90.63% (24.3 MB)

[#004] sha256:7da1df48940c7e79d8e73bb85136f46ca43503720a55557672b9f88a7bd859d6 - 0.03% (7.19 KB)

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

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

[#007] sha256:ec258619b9da4c6b5774300aafbf76a3023dbfab88beafe6bc8e3666c78a2811 - 0.02% (4.3 KB)

[#008] sha256:18407012f66263ee327c0db7333d877db0a9adc127ed6b25ed6cc80a28aa4e92 - 0.0% (120 Bytes)


History
2021-06-15 22:57:34 UTC

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

2021-06-15 22:57:34 UTC

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

2021-07-12 23:17:05 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-07-12 23:17:06 UTC

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

2021-07-12 23:17:07 UTC

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

2021-07-12 23:32:47 UTC

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

2021-07-12 23:32:48 UTC

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

2021-07-12 23:32:48 UTC

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

2021-07-12 23:36: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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-07-12 23:36:27 UTC

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

2021-07-12 23:36:29 UTC

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

2021-07-12 23:36:29 UTC

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

2021-07-12 23:36:31 UTC

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

2021-07-12 23:36:31 UTC

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

2021-07-12 23:36:32 UTC

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

2021-07-12 23:36:34 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-07-12 23:36:34 UTC

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

2021-07-12 23:36:35 UTC

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

2021-07-12 23:36:35 UTC

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

2021-07-12 23:36:36 UTC

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

Details
Created

2021-07-13 03:55:58 UTC

Size

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

10

PG_SHA256

5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c

PG_VERSION

10.17


Layers

[#000] sha256:e160e00eb35d5bc2373770873fbc9c8f5706045b0b06bfd1c364fcf69f02e9fe - 8.97% (2.31 MB)

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

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

[#003] sha256:e1f3ca23c049a9dca0cee0a0e57374b1164459a93566fa68000b48b2e817f10b - 90.98% (23.5 MB)

[#004] sha256:d528d3ce1506a319fcaecbd7b11e0d4d6ae18cbb0d4359d553a5d17fa85038f9 - 0.03% (7.19 KB)

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

[#006] sha256:44f3b0a7339d9bcf5c6423b972c7eeabb7a7e0d43e7cce641acbf556855927b9 - 0.0% (195 Bytes)

[#007] sha256:c4c2570bd7c12dbe53b390c55340c633bab0d704f05231e24a2a9098b232c66c - 0.02% (4.3 KB)

[#008] sha256:d91cf3878d78299770e78eb617634ecccd3c2298634d2f973a66596f30456058 - 0.0% (121 Bytes)


History
2021-06-15 23:15:15 UTC

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

2021-06-15 23:15:16 UTC

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

2021-07-13 03:37:18 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-07-13 03:37:18 UTC

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

2021-07-13 03:37:20 UTC

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

2021-07-13 03:52:15 UTC

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

2021-07-13 03:52:16 UTC

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

2021-07-13 03:52:16 UTC

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

2021-07-13 03:55:48 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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-07-13 03:55:50 UTC

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

2021-07-13 03:55:51 UTC

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

2021-07-13 03:55:52 UTC

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

2021-07-13 03:55:54 UTC

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

2021-07-13 03:55:54 UTC

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

2021-07-13 03:55:55 UTC

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

2021-07-13 03:55:56 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-07-13 03:55:57 UTC

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

2021-07-13 03:55:57 UTC

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

2021-07-13 03:55:58 UTC

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

2021-07-13 03:55:58 UTC

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

Details
Created

2021-06-16 09:12:22 UTC

Size

27.4 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c

PG_VERSION

10.17


Layers

[#000] sha256:595b0fe564bb9444ebfe78288079a01ee6d7f666544028d5e96ba610f909ee43 - 9.44% (2.59 MB)

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

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

[#003] sha256:7b2b861bfb9ffa19f208101d95dd3cd4bfbd65b8fa9b81e9a59e4644341c9ec0 - 90.51% (24.8 MB)

[#004] sha256:b55a6085bfe3e9bcf8e91ce6d1360b4ceb1c53684ff362e5806697052adbefd8 - 0.03% (7.18 KB)

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

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

[#007] sha256:8dd708e176d5b09cd20e225fdc65e7e367c4b841d6583b418bffb3345e25e6ec - 0.02% (4.3 KB)

[#008] sha256:da0ef58d12ea52e8b4fcff6a4c43f2854e670be9d00fbf4f56ab5202cc84e405 - 0.0% (121 Bytes)


History
2021-06-15 21:45:03 UTC

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

2021-06-15 21:45:04 UTC

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

2021-06-16 08:34:51 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-06-16 08:34:51 UTC

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

2021-06-16 08:34:52 UTC

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

2021-06-16 09:09:17 UTC

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

2021-06-16 09:09:17 UTC

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

2021-06-16 09:09:18 UTC

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

2021-06-16 09:12:17 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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-06-16 09:12:18 UTC

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

2021-06-16 09:12:19 UTC

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

2021-06-16 09:12:19 UTC

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

2021-06-16 09:12:20 UTC

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

2021-06-16 09:12:20 UTC

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

2021-06-16 09:12:20 UTC

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

2021-06-16 09:12:21 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-06-16 09:12:21 UTC

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

2021-06-16 09:12:21 UTC

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

2021-06-16 09:12:21 UTC

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

2021-06-16 09:12:22 UTC

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

Details
Created

2021-07-12 23:23:09 UTC

Size

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

10

PG_SHA256

5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c

PG_VERSION

10.17


Layers

[#000] sha256:771d2590aa602a0d4a922e322f02b22cc9d193f8cd159d9d1a140cadf1f8b4d4 - 9.31% (2.68 MB)

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

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

[#003] sha256:ca49576f0b59c7a49f3d893097586cff5c948fc2b63c5739800901d9b8af0acc - 90.64% (26.1 MB)

[#004] sha256:b64f3135ef9ee68c8aaf50e79c7119da2b9db6bc4752a2f1c1bd3b417690d9f4 - 0.02% (7.19 KB)

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

[#006] sha256:7a13e7ac22633ae6a836b4ac55903c4538ea05fd0c3f97e5f3f48bb56ab703f9 - 0.0% (195 Bytes)

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

[#008] sha256:ea82506be29e2386e7717c64f5b78b7107a2c0733fc5730edd8c0491c79829d0 - 0.0% (121 Bytes)


History
2021-04-14 19:30:57 UTC

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

2021-04-14 19:31:02 UTC

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

2021-07-12 22:58:30 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-07-12 22:58:33 UTC

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

2021-07-12 22:58:44 UTC

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

2021-07-12 23:18:07 UTC

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

2021-07-12 23:18:17 UTC

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

2021-07-12 23:18:26 UTC

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

2021-07-12 23:21: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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-07-12 23:21:45 UTC

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

2021-07-12 23:21:55 UTC

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

2021-07-12 23:21:59 UTC

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

2021-07-12 23:22:14 UTC

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

2021-07-12 23:22:19 UTC

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

2021-07-12 23:22:22 UTC

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

2021-07-12 23:22:34 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-07-12 23:22:41 UTC

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

2021-07-12 23:22:51 UTC

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

2021-07-12 23:23:00 UTC

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

2021-07-12 23:23:09 UTC

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

Details
Created

2021-07-13 00:39:14 UTC

Size

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

10

PG_SHA256

5af28071606c9cd82212c19ba584657a9d240e1c4c2da28fc1f3998a2754b26c

PG_VERSION

10.17


Layers

[#000] sha256:afadee6ad6a38d3172beeeca818219604c782efbe93201ef4d39512f289b05ae - 9.02% (2.48 MB)

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

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

[#003] sha256:f1e9aaef67c09b4eaaaa679a33749305deca02080c6f6b858a17d7b88f8286d0 - 90.94% (25 MB)

[#004] sha256:7d3ae73bc045097f7dcf12cf4b9b40f16f5d2c0c26fc4def21ff53e9a49a0819 - 0.03% (7.19 KB)

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

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

[#007] sha256:a6d3079aad6e358989581495dfebfeeeeee52a7e1802cb064769606013894411 - 0.02% (4.3 KB)

[#008] sha256:1725a2886ae4e1d12d3fa525a914c2e22a1b77ac30fda3088a65f124487ca734 - 0.0% (121 Bytes)


History
2021-04-14 18:41:35 UTC

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

2021-04-14 18:41:36 UTC

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

2021-07-13 00:11: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-07-13 00:11:27 UTC

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

2021-07-13 00:11:29 UTC

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

2021-07-13 00:34:31 UTC

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

2021-07-13 00:34:31 UTC

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

2021-07-13 00:34:32 UTC

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

2021-07-13 00:38:57 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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-07-13 00:39:03 UTC

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

2021-07-13 00:39:05 UTC

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

2021-07-13 00:39:06 UTC

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

2021-07-13 00:39:08 UTC

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

2021-07-13 00:39:09 UTC

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

2021-07-13 00:39:09 UTC

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

2021-07-13 00:39:11 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-07-13 00:39:11 UTC

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

2021-07-13 00:39:12 UTC

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

2021-07-13 00:39:13 UTC

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

2021-07-13 00:39:14 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