Namespace
library
Image / Tag
postgres:9.6.19-alpine
Content Digest
sha256:bf8b7232f66a48cda8e3e549679fddd04d91bdbab4d728180e3dddd05a881d3d
Details
Created

2020-10-22 10:15:40 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.6

PG_SHA256

61f93a94ccddbe0b2d1afaf03f04ba605d8af5b774ff9b830e5adeb50ab55cb0

PG_VERSION

9.6.19


Layers

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

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

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

[#003] sha256:1758be1146af620a798e2b4c53cd74aaf548ebe165a0a08c3fac63ffa4e86b09 - 81.29% (11.6 MB)

[#004] sha256:0e9d90a4e11d391abfa55d9335c7ec9324a543f2163ff8a1cc125b11a2e4ef97 - 0.05% (6.99 KB)

[#005] sha256:aa48291f0d77a0bd7e9dabdf838169179cfdc6c23857b311fa031163511c4561 - 0.0% (128 Bytes)

[#006] sha256:cd1293de77bf81d3848e5cbeeda29c1f51f8f928b1f6f1d3717abac98747855a - 0.0% (164 Bytes)

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

[#008] sha256:3f6da5edf25e93eb293d0dc607c9a1c01b56bb4f23309a332a5d9da92f3c6171 - 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:10:53 UTC

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

2020-10-22 10:10:53 UTC

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

2020-10-22 10:10:53 UTC

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

2020-10-22 10:15:35 UTC

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

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

2020-10-22 10:15:37 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:15:37 UTC

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

2020-10-22 10:15:38 UTC

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

2020-10-22 10:15:38 UTC

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

2020-10-22 10:15:39 UTC

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

2020-10-22 10:15:39 UTC

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

2020-10-22 10:15:40 UTC

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

2020-10-22 10:15:40 UTC

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

2020-10-22 10:15:40 UTC

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

2020-10-22 10:15:40 UTC

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

Details
Created

2020-10-22 08:18:33 UTC

Size

13.7 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.6

PG_SHA256

61f93a94ccddbe0b2d1afaf03f04ba605d8af5b774ff9b830e5adeb50ab55cb0

PG_VERSION

9.6.19


Layers

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

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

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

[#003] sha256:1179d7be7b4237214833e8ea20d0b907c21e35024318b43e6c8cd06428744050 - 80.44% (11 MB)

[#004] sha256:f29a2d8a4f2ee881e1b5ce7b32579a53c3a848438266620dc45b215c735413b7 - 0.05% (6.99 KB)

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

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

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

[#008] sha256:ad1754f690cf388dc30a24d56bd7160b9f8ad1689dd68c7c5093817f7323f823 - 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:15:43 UTC

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

2020-10-22 08:15:44 UTC

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

2020-10-22 08:15:44 UTC

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

2020-10-22 08:18: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 ; 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:18:29 UTC

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

2020-10-22 08:18:30 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:18:30 UTC

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

2020-10-22 08:18:31 UTC

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

2020-10-22 08:18:31 UTC

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

2020-10-22 08:18:31 UTC

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

2020-10-22 08:18:32 UTC

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

2020-10-22 08:18:32 UTC

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

2020-10-22 08:18:32 UTC

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

2020-10-22 08:18:32 UTC

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

2020-10-22 08:18:33 UTC

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

Details
Created

2020-10-22 09:15:53 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.6

PG_SHA256

61f93a94ccddbe0b2d1afaf03f04ba605d8af5b774ff9b830e5adeb50ab55cb0

PG_VERSION

9.6.19


Layers

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

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

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

[#003] sha256:0353861e0ba1303d75caddfcb98a9514a897fe1ad27e9987c30a038cafbd1f84 - 80.94% (10.6 MB)

[#004] sha256:ce900d8cdd76c363e93b952488d855f4db7edb56bf18586738c5155f8910ace6 - 0.05% (6.99 KB)

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

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

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

[#008] sha256:2abfb45db984f06c99a205023cb282cf565f493ad241b33c248bc9547ffa3bd8 - 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:12:58 UTC

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

2020-10-22 09:12:59 UTC

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

2020-10-22 09:13:01 UTC

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

2020-10-22 09:15:40 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:15:42 UTC

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

2020-10-22 09:15:44 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:15:45 UTC

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

2020-10-22 09:15:47 UTC

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

2020-10-22 09:15:47 UTC

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

2020-10-22 09:15:48 UTC

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

2020-10-22 09:15:50 UTC

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

2020-10-22 09:15:50 UTC

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

2020-10-22 09:15:51 UTC

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

2020-10-22 09:15:52 UTC

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

2020-10-22 09:15:53 UTC

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

Details
Created

2020-10-22 09:13:19 UTC

Size

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

PG_SHA256

61f93a94ccddbe0b2d1afaf03f04ba605d8af5b774ff9b830e5adeb50ab55cb0

PG_VERSION

9.6.19


Layers

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

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

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

[#003] sha256:53785c7aec3d1276ae4b10987aa89cebc8412388045f6baf9f0a637bbb0c2015 - 81.19% (9.96 MB)

[#004] sha256:275f309721b4225433fc48686dbe7d6410d89807a0cdb590c1dcd5649eb484b1 - 0.06% (6.99 KB)

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

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

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

[#008] sha256:bb08348cca9112313ea90413d551cb1251ef4e9beca2c9aed2e728c9cf090441 - 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:10:47 UTC

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

2020-10-22 09:10:48 UTC

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

2020-10-22 09:10:49 UTC

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

2020-10-22 09:12: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 ; 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:13:01 UTC

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

2020-10-22 09:13:06 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:13:07 UTC

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

2020-10-22 09:13:09 UTC

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

2020-10-22 09:13:11 UTC

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

2020-10-22 09:13:12 UTC

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

2020-10-22 09:13:15 UTC

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

2020-10-22 09:13:16 UTC

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

2020-10-22 09:13:17 UTC

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

2020-10-22 09:13:18 UTC

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

2020-10-22 09:13:19 UTC

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

Details
Created

2020-10-22 08:40:09 UTC

Size

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

PG_SHA256

61f93a94ccddbe0b2d1afaf03f04ba605d8af5b774ff9b830e5adeb50ab55cb0

PG_VERSION

9.6.19


Layers

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

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

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

[#003] sha256:ba8141e5be2f31b8d09929acb70098043a5aa98c1f8c86986948c37a843aaa83 - 80.73% (10.9 MB)

[#004] sha256:07261327025c61b6beb447d094d66a06ed88625319d7f4c902a89cadb0d6ae8a - 0.05% (6.99 KB)

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

[#006] sha256:95aad8041870a4e76dc5a00453f1363fe25758d2a41b8c93be7fdc704bf5103d - 0.0% (195 Bytes)

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

[#008] sha256:236756de9b740bc6ee28fb6b31caf2526a4111f3ebee1eac2def95f6b0efc012 - 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:37:21 UTC

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

2020-10-22 08:37:22 UTC

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

2020-10-22 08:37:22 UTC

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

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

2020-10-22 08:39:53 UTC

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

2020-10-22 08:39:57 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:39:58 UTC

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

2020-10-22 08:40:00 UTC

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

2020-10-22 08:40:01 UTC

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

2020-10-22 08:40:02 UTC

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

2020-10-22 08:40:05 UTC

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

2020-10-22 08:40:06 UTC

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

2020-10-22 08:40:07 UTC

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

2020-10-22 08:40:08 UTC

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

2020-10-22 08:40:09 UTC

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

Details
Created

2020-10-22 23:36:30 UTC

Size

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

PG_SHA256

61f93a94ccddbe0b2d1afaf03f04ba605d8af5b774ff9b830e5adeb50ab55cb0

PG_VERSION

9.6.19


Layers

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

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

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

[#003] sha256:ff6a1a73ecd917bb30acaba74aa897d40dd155ce8c61f25c6093ebbe34a9b014 - 81.6% (11.9 MB)

[#004] sha256:fc6f70e06b6dc89317aaec50adfd52d8f2ee7f88fe47fcbf68a5adec7c98fdad - 0.05% (6.99 KB)

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

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

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

[#008] sha256:07ff792e55d1b8e76fb093b3f0c59408466b080ca2e637bd47c9e8e1c4c7a984 - 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:32:11 UTC

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

2020-10-22 23:32:20 UTC

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

2020-10-22 23:32:27 UTC

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

2020-10-22 23:35:05 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:35:18 UTC

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

2020-10-22 23:35: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 23:35:41 UTC

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

2020-10-22 23:35:54 UTC

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

2020-10-22 23:35:57 UTC

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

2020-10-22 23:35:59 UTC

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

2020-10-22 23:36:09 UTC

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

2020-10-22 23:36:13 UTC

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

2020-10-22 23:36:20 UTC

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

2020-10-22 23:36:25 UTC

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

2020-10-22 23:36:30 UTC

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

Details
Created

2020-10-22 09:25: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.6

PG_SHA256

61f93a94ccddbe0b2d1afaf03f04ba605d8af5b774ff9b830e5adeb50ab55cb0

PG_VERSION

9.6.19


Layers

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

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

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

[#003] sha256:d2502469121171c05fc2f76e2ad25767cecbc16ec44c84033ab905b36752eb0d - 81.51% (10.8 MB)

[#004] sha256:33cc3be8653ac381149a46e7f166fde6a9ca653af9910e5f3d5a35264a36f29a - 0.05% (6.99 KB)

[#005] sha256:6b285cd8c68c9ee9e6f882198a1940aa45563fe88a8146469b79631151b7efbf - 0.0% (162 Bytes)

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

[#007] sha256:0368653c8a2e4b08c6667d3e0a3655086f876d2b4ff5010959422ab2abfb4309 - 0.03% (4.17 KB)

[#008] sha256:e262a0e2bb6bc8b64f64f8fe85e555c43914c92b037beb969cb3bd3117995696 - 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:23:07 UTC

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

2020-10-22 09:23:08 UTC

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

2020-10-22 09:23:09 UTC

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

2020-10-22 09:25: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:25:41 UTC

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

2020-10-22 09:25:42 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:25:43 UTC

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

2020-10-22 09:25:44 UTC

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

2020-10-22 09:25:45 UTC

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

2020-10-22 09:25:45 UTC

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

2020-10-22 09:25:47 UTC

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

2020-10-22 09:25:48 UTC

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

2020-10-22 09:25:48 UTC

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

2020-10-22 09:25:49 UTC

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

2020-10-22 09:25:50 UTC

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