Namespace
library
Image / Tag
postgres:9.5.25-alpine
Content Digest
sha256:b1d91bceef1fbbd64ea5d8afc3d257fbc4ffe23c5b3425ccc72b52f9c500fbb6
Details
Created

2021-04-15 06:35:32 UTC

Size

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

9.5

PG_SHA256

7628c55eb23768a2c799c018988d8f2ab48ee3d80f5e11259938f7a935f0d603

PG_VERSION

9.5.25


Layers

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

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

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

[#003] sha256:5d57e81165eb8c52cbd24ee0ae5cb2bbcef3000eaad8040992b514e867b23cf3 - 80.93% (11.5 MB)

[#004] sha256:87167c73075c3a378056ed791a2ec86561d7ffbeb13ed9046b26de965408f0d5 - 0.05% (6.72 KB)

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

[#006] sha256:339b0f3d74b7088ccb5665fcdeefd7b92cbc365ec508758c8f9df1ade58ffd1d - 0.0% (195 Bytes)

[#007] sha256:c5344f7a5fdd779c9a35864a794fbff4dbfc6960dd419bd0f787624eaa4b5c03 - 0.03% (4.3 KB)

[#008] sha256:3840fc7b1c2b4a9fd683817ebbb3c690dca01f0e3c3a4e1e2ed79c9ed42a5f1b - 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:32:35 UTC

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

2021-04-15 06:32:35 UTC

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

2021-04-15 06:32:35 UTC

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

2021-04-15 06:35:27 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-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 ; 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-04-15 06:35:28 UTC

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

2021-04-15 06:35:29 UTC

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

2021-04-15 06:35:29 UTC

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

2021-04-15 06:35:30 UTC

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

2021-04-15 06:35:30 UTC

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

2021-04-15 06:35:30 UTC

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

2021-04-15 06:35:31 UTC

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

2021-04-15 06:35:31 UTC

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

2021-04-15 06:35:31 UTC

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

2021-04-15 06:35:31 UTC

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

2021-04-15 06:35:32 UTC

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

Details
Created

2021-04-15 04:20:18 UTC

Size

13.6 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

9.5

PG_SHA256

7628c55eb23768a2c799c018988d8f2ab48ee3d80f5e11259938f7a935f0d603

PG_VERSION

9.5.25


Layers

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

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

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

[#003] sha256:6f4fe1a4006b0fc6a905aa4b46fc99ec62bfabb850476bf61c8e87d3599fadd0 - 80.12% (10.9 MB)

[#004] sha256:b21b3b4c0bdb967a18a584a522914b94808918d0256594888e16d5217b0aa05c - 0.05% (6.73 KB)

[#005] sha256:70c92b0b2be9a6bab9e2715501c9f0c03644f60795615f26d82b5e2c6968008c - 0.0% (160 Bytes)

[#006] sha256:5b52784fa069e424cc8eca9270735dad0854fc11ef92945af7c202db55be95c8 - 0.0% (195 Bytes)

[#007] sha256:834277e470724f5220a0c0ba57bc362dcdece03bffd30aa8318d067d87ec445f - 0.03% (4.3 KB)

[#008] sha256:b41402993a06e8c1e27423eea2f9b75bf0a1806995aafe3103e07b0abe25eea5 - 0.0% (118 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:15:36 UTC

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

2021-04-15 04:15:36 UTC

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

2021-04-15 04:15:37 UTC

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

2021-04-15 04:20:07 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 ; 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 ; 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-04-15 04:20:10 UTC

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

2021-04-15 04:20:12 UTC

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

2021-04-15 04:20:12 UTC

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

2021-04-15 04:20:14 UTC

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

2021-04-15 04:20:14 UTC

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

2021-04-15 04:20:15 UTC

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

2021-04-15 04:20:17 UTC

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

2021-04-15 04:20:17 UTC

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

2021-04-15 04:20:17 UTC

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

2021-04-15 04:20:18 UTC

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

2021-04-15 04:20:18 UTC

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

Details
Created

2021-04-15 03:11:51 UTC

Size

13 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

9.5

PG_SHA256

7628c55eb23768a2c799c018988d8f2ab48ee3d80f5e11259938f7a935f0d603

PG_VERSION

9.5.25


Layers

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

[#001] sha256:eb015ae0de556d839b1cce178f0d7aac974efbf85f07dae41e1cb18f4704b7f2 - 0.01% (1.25 KB)

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

[#003] sha256:3df59b45f54943e9cae3fff6e40fb65b90b1b5ea995a693cb9062aee289df62d - 80.65% (10.5 MB)

[#004] sha256:c7bf811bea50dcbbe92960cf9293ced3ab470d11708a08f4a4810bf681a862f3 - 0.05% (6.73 KB)

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

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

[#007] sha256:1a4b8637cffe764fa2211029c7fa9a4ccc30c79a723145b6cba479cb52da259d - 0.03% (4.3 KB)

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


History
2021-04-14 18:49:39 UTC

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

2021-04-14 18:49:40 UTC

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

2021-04-15 02:39:44 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 02:39:45 UTC

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

2021-04-15 02:39:48 UTC

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

2021-04-15 03:06:59 UTC

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

2021-04-15 03:07:00 UTC

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

2021-04-15 03:07:03 UTC

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

2021-04-15 03:11:02 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 ; 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 ; 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-04-15 03:11:15 UTC

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

2021-04-15 03:11:22 UTC

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

2021-04-15 03:11:23 UTC

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

2021-04-15 03:11:29 UTC

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

2021-04-15 03:11:31 UTC

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

2021-04-15 03:11:35 UTC

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

2021-04-15 03:11:43 UTC

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

2021-04-15 03:11:47 UTC

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

2021-04-15 03:11:48 UTC

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

2021-04-15 03:11:49 UTC

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

2021-04-15 03:11:51 UTC

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

Details
Created

2021-04-15 04:10:00 UTC

Size

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

9.5

PG_SHA256

7628c55eb23768a2c799c018988d8f2ab48ee3d80f5e11259938f7a935f0d603

PG_VERSION

9.5.25


Layers

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

[#001] sha256:d289031c7f8e86cc05ec575d7c122bc6d615e827ae76e96bca00fd9b0bba9dfb - 0.01% (1.25 KB)

[#002] sha256:65b79752b7fbad651a271862e12e829d3ce7258cfa9386e5945f7c4232008d57 - 0.0% (148 Bytes)

[#003] sha256:38d98fc505cd422fd8783bf8d923408ab3c101b7cd30ec88c6e614de767b77b6 - 80.94% (9.87 MB)

[#004] sha256:5fccf6b3856f655cc1929b66555f2cfc8b1f6d852d1044a72787abec6e469dea - 0.05% (6.73 KB)

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

[#006] sha256:6d2ee50bce082de097d27af7170b3b3cd64b7ecc9f0f9e6314c7859810d5ecc8 - 0.0% (195 Bytes)

[#007] sha256:4e8d324facf2cb96cc6c4705dc0aab636bce8691460171a1c912b8740bd0d378 - 0.03% (4.3 KB)

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


History
2021-04-14 18:57:39 UTC

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

2021-04-14 18:57:39 UTC

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

2021-04-15 03:45:28 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:45:30 UTC

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

2021-04-15 03:45:35 UTC

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

2021-04-15 04:06:31 UTC

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

2021-04-15 04:06:32 UTC

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

2021-04-15 04:06:33 UTC

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

2021-04-15 04:09:22 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 ; 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 ; 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-04-15 04:09:30 UTC

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

2021-04-15 04:09:36 UTC

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

2021-04-15 04:09:38 UTC

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

2021-04-15 04:09:45 UTC

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

2021-04-15 04:09:47 UTC

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

2021-04-15 04:09:49 UTC

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

2021-04-15 04:09:53 UTC

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

2021-04-15 04:09:55 UTC

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

2021-04-15 04:09:56 UTC

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

2021-04-15 04:09:58 UTC

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

2021-04-15 04:10:00 UTC

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

Details
Created

2021-04-15 06:46:51 UTC

Size

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

9.5

PG_SHA256

7628c55eb23768a2c799c018988d8f2ab48ee3d80f5e11259938f7a935f0d603

PG_VERSION

9.5.25


Layers

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

[#001] sha256:343d254f5bda6431d4dc0605dac9afc2ec2451bb699bf4fb33ba376136dd6667 - 0.01% (1.25 KB)

[#002] sha256:94173ef17c9429dd105f2740fe97f3abcddc3d368f05478b43414fd1e3c0d89c - 0.0% (147 Bytes)

[#003] sha256:ee46c7a370f6a45b3dc1c3926fac3bc5275dea53dc9516dc2c1c5d1fa281b257 - 80.44% (10.7 MB)

[#004] sha256:57b2fc216c98b191b3d3dd7c191f84b4d634911fddacbe0046537b6843856cbd - 0.05% (6.73 KB)

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

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

[#007] sha256:06019a8a678cba8fa087891f3c6b65f9fdbbff83ef762187cc17a10d7d3627f4 - 0.03% (4.3 KB)

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


History
2021-04-14 18:42:37 UTC

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

2021-04-14 18:42:38 UTC

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

2021-04-15 06:22:54 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:22:55 UTC

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

2021-04-15 06:22:58 UTC

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

2021-04-15 06:43:46 UTC

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

2021-04-15 06:43:47 UTC

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

2021-04-15 06:43:48 UTC

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

2021-04-15 06:46: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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-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 ; 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-04-15 06:46:34 UTC

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

2021-04-15 06:46:37 UTC

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

2021-04-15 06:46:37 UTC

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

2021-04-15 06:46:40 UTC

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

2021-04-15 06:46:42 UTC

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

2021-04-15 06:46:43 UTC

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

2021-04-15 06:46:47 UTC

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

2021-04-15 06:46:48 UTC

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

2021-04-15 06:46:50 UTC

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

2021-04-15 06:46:51 UTC

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

2021-04-15 06:46:51 UTC

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

Details
Created

2021-04-15 05:07:52 UTC

Size

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

9.5

PG_SHA256

7628c55eb23768a2c799c018988d8f2ab48ee3d80f5e11259938f7a935f0d603

PG_VERSION

9.5.25


Layers

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

[#001] sha256:85f26f1d1b4701765dc7858aba1bef999c1ba3b78d85ae321be21792492595da - 0.01% (1.25 KB)

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

[#003] sha256:61e0dedb3fb8b9c0e8e5b585b269ec475c418ef361bb27fdfe8ba5a5ce501c25 - 81.42% (11.8 MB)

[#004] sha256:cccda36dd1907e8d30d01fc05e1512b099e56eeaac44d99a502a0774b3068298 - 0.05% (6.72 KB)

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

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

[#007] sha256:6932d993fa8de1014219e5de02539dc6794f43e2356f3b2eed843f4db583d831 - 0.03% (4.31 KB)

[#008] sha256:a10a192afdf76e7bcac071ea27e1dc2e2f1f5ca1f8247bc38949822d68660e32 - 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-04-15 04:37: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-04-15 04:37:29 UTC

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

2021-04-15 04:37:35 UTC

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

2021-04-15 05:04:08 UTC

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

2021-04-15 05:04:13 UTC

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

2021-04-15 05:04:18 UTC

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

2021-04-15 05:06: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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-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 ; 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-04-15 05:06:58 UTC

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

2021-04-15 05:07:03 UTC

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

2021-04-15 05:07:09 UTC

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

2021-04-15 05:07:18 UTC

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

2021-04-15 05:07:24 UTC

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

2021-04-15 05:07:27 UTC

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

2021-04-15 05:07:37 UTC

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

2021-04-15 05:07:43 UTC

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

2021-04-15 05:07:48 UTC

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

2021-04-15 05:07:50 UTC

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

2021-04-15 05:07:52 UTC

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

Details
Created

2021-04-15 02:54:50 UTC

Size

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

9.5

PG_SHA256

7628c55eb23768a2c799c018988d8f2ab48ee3d80f5e11259938f7a935f0d603

PG_VERSION

9.5.25


Layers

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

[#001] sha256:f539beccb9c12dbbd5eb5238188d7421b0e766e3e536f47e5a25dce4187b138f - 0.01% (1.25 KB)

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

[#003] sha256:880f0c59a4fd1cae2319e7e1d49b050fbb3ad570e013d71e3455d85768294068 - 81.18% (10.8 MB)

[#004] sha256:6cfdffb62119b4fab3e1cf26b74a306981f798656341be18964d45c9949d6ded - 0.05% (6.72 KB)

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

[#006] sha256:2679243abb4e17a645be73150f915b785b77b87406a82eef062dc468ef559f32 - 0.0% (192 Bytes)

[#007] sha256:4b0daddd82021e2998781ed197df90e90e16fb8fdb92c73782a18fe041800b04 - 0.03% (4.3 KB)

[#008] sha256:572c2c255d543cfb041af1280e5de7f5bc68128c8d22cc751ad0ffa1b5580d72 - 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-04-15 02:35: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-04-15 02:35:26 UTC

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

2021-04-15 02:35:27 UTC

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

2021-04-15 02:52:48 UTC

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

2021-04-15 02:52:48 UTC

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

2021-04-15 02:52:48 UTC

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

2021-04-15 02:54:44 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 ; 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 ; 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-04-15 02:54:45 UTC

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

2021-04-15 02:54:46 UTC

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

2021-04-15 02:54:46 UTC

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

2021-04-15 02:54:47 UTC

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

2021-04-15 02:54:47 UTC

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

2021-04-15 02:54:48 UTC

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

2021-04-15 02:54:48 UTC

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

2021-04-15 02:54:49 UTC

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

2021-04-15 02:54:49 UTC

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

2021-04-15 02:54:49 UTC

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

2021-04-15 02:54: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