Namespace
library
Image / Tag
postgres:9.5.23-alpine
Content Digest
sha256:8ed160d0718257f4df2bb72633ec2710977241d95014865486a64620d983bcd5
Details
Created

2020-10-22 10:20:17 UTC

Size

14 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

e314fa7e3355c4b8a35e94eeb8e58a6cf46adf49a2f9afa0c15cbc39980c8366

PG_VERSION

9.5.23


Layers

[#000] sha256:d6ca64ac6f4b6382142ce9a3501652938130a6ec4bb02f3f455ee1f980834cfe - 19.06% (2.66 MB)

[#001] sha256:596122efb908f979efd1794c09ae9c7a15ac0e4d53f2c181fd646d9f32565d9a - 0.01% (1.22 KB)

[#002] sha256:feeb7bd791d51cd161cadd22b53bd066e70998ebd55dd5ba92760d35f1ab9e8b - 0.0% (113 Bytes)

[#003] sha256:20d1c59e7b8d3f30aa98cbee2792edb3c973c3934013f06851c11c48fc827d28 - 80.85% (11.3 MB)

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

[#005] sha256:f897c8f76cb6eb190a5f8d75c1b7fa160c1e7c1649e507fbb8fc9cee40b90117 - 0.0% (129 Bytes)

[#006] sha256:e169999f6a19a1f6936f01e3c0a0393896daf7a511ff9f93e7a2ac58ddc97139 - 0.0% (165 Bytes)

[#007] sha256:1dbcd6d819ea690c2ca4b01ab9345735a88964a0156ac4b925ac51282d7309a7 - 0.03% (4.16 KB)

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


History
2020-10-22 02:00:33 UTC

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

2020-10-22 02:00:33 UTC

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

2020-10-22 09:38:39 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

2020-10-22 09:38:39 UTC

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

2020-10-22 09:38:40 UTC

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

2020-10-22 10:16:01 UTC

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

2020-10-22 10:16:02 UTC

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

2020-10-22 10:16:02 UTC

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

2020-10-22 10:20:12 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

2020-10-22 10:20:12 UTC

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

2020-10-22 10:20:13 UTC

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

2020-10-22 10:20:14 UTC

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

2020-10-22 10:20:14 UTC

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

2020-10-22 10:20:15 UTC

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

2020-10-22 10:20:15 UTC

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

2020-10-22 10:20:16 UTC

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

2020-10-22 10:20:16 UTC

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

2020-10-22 10:20:16 UTC

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

2020-10-22 10:20:16 UTC

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

2020-10-22 10:20:17 UTC

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

Details
Created

2020-10-22 08:21:30 UTC

Size

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

9.5

PG_SHA256

e314fa7e3355c4b8a35e94eeb8e58a6cf46adf49a2f9afa0c15cbc39980c8366

PG_VERSION

9.5.23


Layers

[#000] sha256:188c0c94c7c576fff0792aca7ec73d67a2f7f4cb3a6e53a84559337260b36964 - 19.94% (2.67 MB)

[#001] sha256:56f1d1b70e7fa650fd6229086120f763219adce9e33e8b20bdfbf8452ab69847 - 0.01% (1.22 KB)

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

[#003] sha256:e58698a2c398c9bb88abe0c26a14ae1f13543f277c45984a3fb84ff78db534ed - 79.97% (10.7 MB)

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

[#005] sha256:c7d365d0c77d61c91f17bb6d46caec838c4b633479893414e1cb9642cffd7908 - 0.0% (129 Bytes)

[#006] sha256:d913cc1f9cc6de0ec1d6b93d6636510153e532e22c4dca0d1f11d842bc97e9da - 0.0% (163 Bytes)

[#007] sha256:63fe84a238158e430744fb5c8be871e5f8dc4ad3d036802fb6c223eeb563b972 - 0.03% (4.16 KB)

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


History
2020-10-22 02:19:24 UTC

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

2020-10-22 02:19:24 UTC

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

2020-10-22 07:55: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

2020-10-22 07:55:14 UTC

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

2020-10-22 07:55:15 UTC

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

2020-10-22 08:18:49 UTC

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

2020-10-22 08:18:49 UTC

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

2020-10-22 08:18:49 UTC

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

2020-10-22 08:21: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 ; 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

2020-10-22 08:21:26 UTC

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

2020-10-22 08:21:27 UTC

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

2020-10-22 08:21:27 UTC

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

2020-10-22 08:21:28 UTC

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

2020-10-22 08:21:28 UTC

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

2020-10-22 08:21:28 UTC

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

2020-10-22 08:21:29 UTC

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

2020-10-22 08:21:29 UTC

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

2020-10-22 08:21:29 UTC

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

2020-10-22 08:21:30 UTC

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

2020-10-22 08:21:30 UTC

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

Details
Created

2020-10-22 09:18:55 UTC

Size

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

9.5

PG_SHA256

e314fa7e3355c4b8a35e94eeb8e58a6cf46adf49a2f9afa0c15cbc39980c8366

PG_VERSION

9.5.23


Layers

[#000] sha256:bad30e7b45c14f784ef29a828b5fc69db0ebdefebcde6a7c98f4f77ffc93a546 - 19.42% (2.48 MB)

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

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

[#003] sha256:9e15f6bc0fbc8cad1947fd706218aade4420c012b390289aee2bba72ec8dd5d4 - 80.48% (10.3 MB)

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

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

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

[#007] sha256:e614a65c904a1085a1fe4c8f822c8c1f1572da99c149abdfe6fc51bf7aef912e - 0.03% (4.16 KB)

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


History
2020-10-22 02:01:09 UTC

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

2020-10-22 02:01:12 UTC

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

2020-10-22 08:55:00 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

2020-10-22 08:55:00 UTC

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

2020-10-22 08:55:02 UTC

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

2020-10-22 09:16:03 UTC

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

2020-10-22 09:16:05 UTC

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

2020-10-22 09:16:07 UTC

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

2020-10-22 09:18:37 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

2020-10-22 09:18:40 UTC

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

2020-10-22 09:18:43 UTC

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

2020-10-22 09:18:44 UTC

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

2020-10-22 09:18:46 UTC

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

2020-10-22 09:18:48 UTC

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

2020-10-22 09:18:50 UTC

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

2020-10-22 09:18:52 UTC

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

2020-10-22 09:18:53 UTC

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

2020-10-22 09:18:54 UTC

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

2020-10-22 09:18:55 UTC

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

2020-10-22 09:18:55 UTC

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

Details
Created

2020-10-22 09:16:32 UTC

Size

12 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

e314fa7e3355c4b8a35e94eeb8e58a6cf46adf49a2f9afa0c15cbc39980c8366

PG_VERSION

9.5.23


Layers

[#000] sha256:5f2023fd85a4e68f37fe41421fd89f30e69b98a645613521c57c01317561eee3 - 19.15% (2.29 MB)

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

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

[#003] sha256:f566ecca47905a4399aa535cf61665c5f028d1c7e953289d910123dc3c21656d - 80.75% (9.67 MB)

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

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

[#006] sha256:31a8736e4959a14ff63b3821afe0597f3bb6a7edb4ec15b428ce793086dc5f3f - 0.0% (196 Bytes)

[#007] sha256:06774c3ec441751cef9bacaf079b5ab2602253ff447e20f37783a2a690431263 - 0.03% (4.16 KB)

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


History
2020-10-22 01:58:13 UTC

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

2020-10-22 01:58:14 UTC

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

2020-10-22 08:56:01 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

2020-10-22 08:56:03 UTC

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

2020-10-22 08:56:05 UTC

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

2020-10-22 09:13:41 UTC

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

2020-10-22 09:13:42 UTC

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

2020-10-22 09:13:43 UTC

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

2020-10-22 09:16: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 ; 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

2020-10-22 09:16:19 UTC

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

2020-10-22 09:16:21 UTC

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

2020-10-22 09:16:22 UTC

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

2020-10-22 09:16:24 UTC

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

2020-10-22 09:16:27 UTC

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

2020-10-22 09:16:27 UTC

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

2020-10-22 09:16:29 UTC

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

2020-10-22 09:16:30 UTC

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

2020-10-22 09:16:31 UTC

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

2020-10-22 09:16:31 UTC

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

2020-10-22 09:16:32 UTC

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

Details
Created

2020-10-22 08:43:27 UTC

Size

13.1 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.5

PG_SHA256

e314fa7e3355c4b8a35e94eeb8e58a6cf46adf49a2f9afa0c15cbc39980c8366

PG_VERSION

9.5.23


Layers

[#000] sha256:5f621e34cdf485f410766dc9a0fc7855d17916d0f6583b58cbdce7c28831f527 - 19.65% (2.58 MB)

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

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

[#003] sha256:a6f2c1200fe0923570c5614ce2eb895e6cd8950016aa3ce38fabafdeca271b83 - 80.26% (10.5 MB)

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

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

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

[#007] sha256:1b30954f64b5b9dbd5b18669e245437635d92b05c42d5e29eda7295e8d2ec278 - 0.03% (4.16 KB)

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


History
2020-10-22 02:01:01 UTC

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

2020-10-22 02:01:06 UTC

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

2020-10-22 08:21:49 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

2020-10-22 08:21:49 UTC

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

2020-10-22 08:21:51 UTC

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

2020-10-22 08:40:39 UTC

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

2020-10-22 08:40:39 UTC

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

2020-10-22 08:40:40 UTC

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

2020-10-22 08:43:00 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

2020-10-22 08:43:03 UTC

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

2020-10-22 08:43:07 UTC

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

2020-10-22 08:43:08 UTC

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

2020-10-22 08:43:13 UTC

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

2020-10-22 08:43:14 UTC

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

2020-10-22 08:43:16 UTC

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

2020-10-22 08:43:22 UTC

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

2020-10-22 08:43:23 UTC

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

2020-10-22 08:43:25 UTC

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

2020-10-22 08:43:26 UTC

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

2020-10-22 08:43:27 UTC

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

Details
Created

2020-10-22 23:40:49 UTC

Size

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

e314fa7e3355c4b8a35e94eeb8e58a6cf46adf49a2f9afa0c15cbc39980c8366

PG_VERSION

9.5.23


Layers

[#000] sha256:692a9d763e196c85d79fc3e45b316b1bb557c93ba88a3c8ebf679a585d1efe73 - 18.74% (2.67 MB)

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

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

[#003] sha256:452cf14f9e87d25e87d9f3456f1ffdf5a1bce2609c3aaba2ff00c4352d3ff990 - 81.17% (11.6 MB)

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

[#005] sha256:9f8c85c6d1bede9fa2c33f80bea833c4d2a7d1d1ee562fd01dcd685735814d8f - 0.0% (162 Bytes)

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

[#007] sha256:65a418c7c25dc79663fd02090bb362982644872865777b20d5cdc9bb846778bb - 0.03% (4.16 KB)

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


History
2020-10-22 11:00:06 UTC

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

2020-10-22 11:00:17 UTC

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

2020-10-22 23:06: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

2020-10-22 23:06:17 UTC

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

2020-10-22 23:06:23 UTC

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

2020-10-22 23:36:40 UTC

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

2020-10-22 23:36:46 UTC

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

2020-10-22 23:36:51 UTC

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

2020-10-22 23:39:23 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

2020-10-22 23:39:35 UTC

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

2020-10-22 23:39:45 UTC

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

2020-10-22 23:39:49 UTC

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

2020-10-22 23:40:00 UTC

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

2020-10-22 23:40:07 UTC

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

2020-10-22 23:40:09 UTC

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

2020-10-22 23:40:20 UTC

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

2020-10-22 23:40:26 UTC

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

2020-10-22 23:40:30 UTC

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

2020-10-22 23:40:38 UTC

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

2020-10-22 23:40:49 UTC

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

Details
Created

2020-10-22 09:28:38 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

e314fa7e3355c4b8a35e94eeb8e58a6cf46adf49a2f9afa0c15cbc39980c8366

PG_VERSION

9.5.23


Layers

[#000] sha256:a4c84ece3d2b98927d25f13a4f367bfd96cbfae272f6ff1117d74c84b92d11d3 - 18.84% (2.45 MB)

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

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

[#003] sha256:896dd64d7e694827cde8cb9ba93b7d402e6996e459a5ebf193675aa07a4eb5b8 - 81.06% (10.5 MB)

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

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

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

[#007] sha256:054d58e5a39ed9028d1e3ae82188d0214479b19559cc21d77655872907c510f5 - 0.03% (4.16 KB)

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


History
2020-10-22 01:59:08 UTC

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

2020-10-22 01:59:09 UTC

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

2020-10-22 09:05:49 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

2020-10-22 09:05:49 UTC

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

2020-10-22 09:05:50 UTC

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

2020-10-22 09:25:57 UTC

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

2020-10-22 09:25:57 UTC

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

2020-10-22 09:25:58 UTC

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

2020-10-22 09:28:26 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

2020-10-22 09:28:29 UTC

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

2020-10-22 09:28:31 UTC

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

2020-10-22 09:28:32 UTC

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

2020-10-22 09:28:33 UTC

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

2020-10-22 09:28:34 UTC

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

2020-10-22 09:28:34 UTC

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

2020-10-22 09:28:36 UTC

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

2020-10-22 09:28:37 UTC

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

2020-10-22 09:28:37 UTC

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

2020-10-22 09:28:38 UTC

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

2020-10-22 09:28:38 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