docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:9.4.21-alpine
sha256:3d18a1bac12da04d56a70f7169d9eb4772a5336649c48e61f4e31254499cd44d
2019-04-25 11:26:23 UTC
13.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.4
PG_SHA2560049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
PG_VERSION9.4.21
[#000] sha256:9a81e6a1a3b4f174d22173a96692c9aeffaefcd00f40607d508951a2b14d6f1f - 18.89% (2.62 MB)
[#001] sha256:5df8da713ae1263f84fd0cae748880b9bd3c3aa4619279b1b972976cdd7d4933 - 0.0% (149 Bytes)
[#002] sha256:60005ea8fc190aec4ebdcb14ff51e60c24531718c56530053e1321be67ccc37a - 0.0% (115 Bytes)
[#003] sha256:c919c83c5aa6683de7c502889133b382e2ed8fb976a8092abaebdc0e3d3bba59 - 81.04% (11.3 MB)
[#004] sha256:6a6de3be837632a220715465384294182cb0b5cd5947ab06b7881f0dbd75114c - 0.05% (6.53 KB)
[#005] sha256:9042e72fd55f8881427b7745d3cbf649e9073aab1c12a254922eb98f3601481c - 0.0% (129 Bytes)
[#006] sha256:d494cd187e3cdee825a65b595bcbe59075a775f32ce40d10d5cb82d7342c91df - 0.0% (173 Bytes)
[#007] sha256:596da7794241bddd6a876ad98043725c999b9c32fd25fb4e7eb5ca763a5358c4 - 0.02% (2.32 KB)
[#008] sha256:041c90b83ca2d85ef368b4496e2e28534eb18ef14b369acacf668c3c110d66b0 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:51f7bb95ef6cc3519317dcb7abbf6155e6bb7b73a17ad7d90cad7911e8a8933c in /
2019-04-10 10:38:55 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-04-10 14:28:03 UTC/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"
2019-04-10 14:28:03 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-04-10 14:28:04 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-04-10 14:41:23 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2019-04-10 14:41:23 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.21
2019-04-10 14:41:24 UTC/bin/sh -c #(nop) ENV PG_SHA256=0049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
2019-04-10 14:43:57 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2019-04-10 14:43:57 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-04-10 14:43:58 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-04-10 14:43:58 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-04-25 11:26:21 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-04-25 11:26:22 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-04-25 11:26:22 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-04-25 11:26:23 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-04-25 11:26:23 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-04-25 11:26:23 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-04-25 11:26:23 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:1470b382fbe2963a44c427fe90ae336e1cb5323458a78228246d801c8f1bf158
2019-04-25 00:28:44 UTC
13.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.4
PG_SHA2560049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
PG_VERSION9.4.21
[#000] sha256:bdf0201b3a056acc4d6062cc88cd8a4ad5979983bfb640f15a145e09ed985f92 - 19.67% (2.63 MB)
[#001] sha256:365f27dc05d7a3562de7526a4c5cca44d00d6bced5c9ddbb4f21e2db97ae492f - 0.0% (148 Bytes)
[#002] sha256:bf541d40dfbca919d52eaeffee79c612c3d669830e4bf23dbade267774d7708f - 0.0% (115 Bytes)
[#003] sha256:7dec2a1f9d1ac47ad6a0713722e0fda210bddf3750063f85e77baf00db8a0f2e - 80.26% (10.7 MB)
[#004] sha256:61e2686b47add60414441246f8090d6db3dec257524ddbe15ff7bac785904158 - 0.05% (6.53 KB)
[#005] sha256:8e95dc39582e69784531234fdb78ce3bd273df1e271c69c48afc3f32cc7c7e45 - 0.0% (129 Bytes)
[#006] sha256:f4bb60850551a0b71c134647cd0d6b68b3ad96d236fdaf2c8fb1df700b5a5768 - 0.0% (174 Bytes)
[#007] sha256:f078c9578eb52b7faac12409479055c118affa6d29136fe94e42f3699a6d9acc - 0.02% (2.32 KB)
[#008] sha256:9054d630bcd08f76c97d45dcb206dac7397868b4d54d4fa8943e07d20ff1ac81 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:2e3a37883f56a4a278bec2931fc9f91fb9ebdaa9047540fe8fde419b84a1701b in /
2019-04-09 23:20:18 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-04-09 23:40:59 UTC/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"
2019-04-09 23:40:59 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-04-09 23:41:00 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-04-09 23:55:23 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2019-04-09 23:55:23 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.21
2019-04-09 23:55:23 UTC/bin/sh -c #(nop) ENV PG_SHA256=0049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
2019-04-09 23:58:23 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2019-04-09 23:58:24 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-04-09 23:58:25 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-04-09 23:58:25 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-04-25 00:28:40 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-04-25 00:28:41 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-04-25 00:28:41 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-04-25 00:28:43 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-04-25 00:28:43 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-04-25 00:28:44 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-04-25 00:28:44 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:da0214b6803dc9b22a6db3ccaa69a4ffc90f25fcb39772bd0960f198f67851fc
2019-04-25 08:04:20 UTC
12.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.4
PG_SHA2560049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
PG_VERSION9.4.21
[#000] sha256:9d34ec1d9f3e63864b68d564a237efd2e3778f39a85961f7bdcb3937084070e1 - 19.0% (2.43 MB)
[#001] sha256:1e3510403378b09eb87d6996a614a8a3dc8e31725e6b680577a5e59572fefeb7 - 0.0% (182 Bytes)
[#002] sha256:24d941d2aacff6d14e3e8f915884b83b36359f5c15182aee7c59dd57ea09b34c - 0.0% (149 Bytes)
[#003] sha256:95f2baf26ef8d4b79f92127f41fa7a3df0012684f90c48babfaa488b8898b2ef - 80.93% (10.3 MB)
[#004] sha256:fe5f2afdc38428f031495458293ca41ef74fe52bc9dd1face7526963fa7b1451 - 0.05% (6.54 KB)
[#005] sha256:a7014c879621687c183eec85a9f798ac9dcedfac2b8bb4fb203b3f9ddb0089f0 - 0.0% (161 Bytes)
[#006] sha256:858f333b594b0d9f2ecde7940a964457096aeeeca45febe9a5c8e504aaca01f0 - 0.0% (205 Bytes)
[#007] sha256:9f92a5b7a9f3d3b7140b3f29114075ca5088476ebf4294c109696694a2b99111 - 0.02% (2.32 KB)
[#008] sha256:cf32d1fa4e3e7823740bf0eb96c998ae4796aa428cc058f5a487cb3cd365e93f - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:a436c215187a8aeeb53f8266f96bd40adc3856bb6dc3fe766542e69831ffa7c9 in /
2019-04-10 07:49:49 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-04-10 09:03:08 UTC/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"
2019-04-10 09:03:08 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-04-10 09:03:10 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-04-10 09:11:59 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2019-04-10 09:11:59 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.21
2019-04-10 09:12:00 UTC/bin/sh -c #(nop) ENV PG_SHA256=0049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
2019-04-10 09:13:34 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2019-04-10 09:13:35 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-04-10 09:13:36 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-04-10 09:13:37 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-04-25 08:04:17 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-04-25 08:04:17 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-04-25 08:04:17 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-04-25 08:04:19 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-04-25 08:04:19 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-04-25 08:04:20 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-04-25 08:04:20 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:f24751978e46533f9babbf730b8c74e5ae41ec6769d5c04542acfda922bf39b8
2019-04-25 12:05:41 UTC
12 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.4
PG_SHA2560049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
PG_VERSION9.4.21
[#000] sha256:c2a5cdd4aa08146b4516cc95f6b461f2994250a819b3e6f75f23fa2a8c1b1744 - 18.65% (2.24 MB)
[#001] sha256:7d279db916c7957a1cea16fb73fa11ee1839092769f8c04e25bb8af5a8737491 - 0.0% (180 Bytes)
[#002] sha256:a2fcb955ce0c723d4c267e49a0429fcfc4645face9d1f749eb7bee7845c0b240 - 0.0% (149 Bytes)
[#003] sha256:9dd38fd748f25a0add17773b7d720e1ffeb6dfc0b03772836fdd5176f1b5cb10 - 81.27% (9.77 MB)
[#004] sha256:041acaf40c638c0967829fec7084c569788e165de2caab8af15b237296e9fc49 - 0.05% (6.53 KB)
[#005] sha256:b58d90d0b134dddff239fb74f4496c3e67192f8a55d796b3eae718924dcf1739 - 0.0% (161 Bytes)
[#006] sha256:23a318609260c0df46b8b0bc4cfa28b28a4db49180f5ee04d734953d87b48531 - 0.0% (203 Bytes)
[#007] sha256:0ab27a38c4f904362033f233019d133b8978262e02930c14f8d7a1f1af3ecb26 - 0.02% (2.32 KB)
[#008] sha256:01dfebf92d6b6939e23d7b4372917efb7f9356dc917af353f99c1339295d4afa - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:1a27b74f23795a1f205247dcd6eff48ac56f0b8f2afe0c358199a0b60f694861 in /
2019-04-10 11:57:48 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-04-10 12:46:19 UTC/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"
2019-04-10 12:46:19 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-04-10 12:46:21 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-04-10 12:55:30 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2019-04-10 12:55:30 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.21
2019-04-10 12:55:31 UTC/bin/sh -c #(nop) ENV PG_SHA256=0049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
2019-04-10 12:57:01 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2019-04-10 12:57:02 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-04-10 12:57:04 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-04-10 12:57:04 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-04-25 12:05:37 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-04-25 12:05:38 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-04-25 12:05:38 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-04-25 12:05:40 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-04-25 12:05:40 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-04-25 12:05:41 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-04-25 12:05:41 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:6fa553f56481d7dacf3851866224bfe6fc22d49ab57796c5b1ce2238d622c358
2019-04-25 09:30:10 UTC
13.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.4
PG_SHA2560049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
PG_VERSION9.4.21
[#000] sha256:6f37394be673296a0fdc21b819c5df40431baf7d3af121bee451726dd1457493 - 19.39% (2.56 MB)
[#001] sha256:0fea16c00f90d0af6592e1608d6e3318a5055868310f316ebee261e89b982b1e - 0.0% (148 Bytes)
[#002] sha256:8b041547846a3b396a5b0f7f676273100de8d96c1f2671a68f884085274c0c47 - 0.0% (115 Bytes)
[#003] sha256:17ce058072902b3df370b3d2e529af3c5657d43e79e21dff662631a528f217aa - 80.54% (10.6 MB)
[#004] sha256:cd47d76fc636648b35f6054bbfa88ffbeb49f255473cc61864d81dcfb3a8d0c9 - 0.05% (6.54 KB)
[#005] sha256:39d5d6782b8dea92424a1e67aae423e69499bcc7acf0e224911d01aa0c08abf7 - 0.0% (129 Bytes)
[#006] sha256:70932f6c8b5c40d3105494f89ae8c6c24747600da1f97e07be4e7bb52e3e00c2 - 0.0% (173 Bytes)
[#007] sha256:0410f98792511cd77b5c83327adec7baff1e3e2b70f4691bc6a3fea99ee78d42 - 0.02% (2.32 KB)
[#008] sha256:bcd31e311671a36c9630f83658681be5f8192f79c334bdcaf81233ce69ed2ee2 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:30e0a8ccdca70b20b8ce637f0ba5108157f4ba491447d20aafbe45d82392bd81 in /
2019-04-10 08:49:12 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-04-10 10:22:45 UTC/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"
2019-04-10 10:22:46 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-04-10 10:22:50 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-04-10 10:59:29 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2019-04-10 10:59:30 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.21
2019-04-10 10:59:31 UTC/bin/sh -c #(nop) ENV PG_SHA256=0049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
2019-04-10 11:06:06 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2019-04-10 11:06:09 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-04-10 11:06:13 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-04-10 11:06:14 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-04-25 09:30:00 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-04-25 09:30:01 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-04-25 09:30:02 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-04-25 09:30:06 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-04-25 09:30:07 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-04-25 09:30:08 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-04-25 09:30:10 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:7f148286552f1e8880365610adbd47c1ff674ea704232596d290c6fd1c6967aa
2019-04-25 09:33:32 UTC
14.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.4
PG_SHA2560049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
PG_VERSION9.4.21
[#000] sha256:fe0f92a92ee06f38abf50fefd22331ac42262e3872ecd2d7ddfa7c24ab71a53a - 18.44% (2.65 MB)
[#001] sha256:72fadc09892703ded74da3266e56d7cf5631a32b6afc741c5d73cd181c7fcf26 - 0.0% (180 Bytes)
[#002] sha256:d903923d54c1aec0b4affbfa3483f2a737879e509527322b1f68fde697c40acf - 0.0% (149 Bytes)
[#003] sha256:7dbf3fae85da2fd74add3d502ece2707d0a4143134614420d7111de4589436b6 - 81.49% (11.7 MB)
[#004] sha256:f8de8e076191d93c78d2eb10067d60ca4685bde0977e3284e2a6bbfa350723b5 - 0.04% (6.54 KB)
[#005] sha256:798497f4b445cdb5c4a541835462338e500c37cf9d3b9de84d14d7a4901efa8d - 0.0% (162 Bytes)
[#006] sha256:897c7153e5c67c19981f9c415f1fc07b471cc80cdaabb7dee5ab4a376551eef6 - 0.0% (205 Bytes)
[#007] sha256:ef0d097f4c2b06c9db9a767bd582ef1a3edaefdabfc11397384d990bb2540334 - 0.02% (2.32 KB)
[#008] sha256:1d68ae7d834632ede78aa91aecdee8570943a866882c11588e587987477f7188 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:c13c1c2b4e6d71924f570a910caf6a1756ea5a28a4017c7b11305e021eacd0ee in /
2019-04-10 08:27:33 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-04-10 10:40:21 UTC/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"
2019-04-10 10:40:26 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-04-10 10:40:31 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-04-10 10:58:13 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2019-04-10 10:58:17 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.21
2019-04-10 10:58:21 UTC/bin/sh -c #(nop) ENV PG_SHA256=0049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
2019-04-10 11:01:08 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2019-04-10 11:01:15 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-04-10 11:01:21 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-04-10 11:01:24 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-04-25 09:33:08 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-04-25 09:33:14 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-04-25 09:33:16 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-04-25 09:33:22 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-04-25 09:33:25 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-04-25 09:33:29 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-04-25 09:33:32 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:498f07c0241dc82d14476535ccdd23828148defcedfb5e6940e595f7deda2baf
2019-04-25 12:27:22 UTC
13 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.4
PG_SHA2560049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
PG_VERSION9.4.21
[#000] sha256:5b51e37a522c2e7cd3c67e8a3e5500b45189ea6698e9fdaed7f5d48282326633 - 18.59% (2.43 MB)
[#001] sha256:7e5a42be124b5c35b80d686de80099c7a29e62671dde52357608c5bb43155289 - 0.0% (148 Bytes)
[#002] sha256:3c64b23a57d110ce8601a192addcebc6d5707db8c43d027616541b6f338c1624 - 0.0% (115 Bytes)
[#003] sha256:f05c851882483a1bc153e0f352129b8cd18e87c38aefe6e6f23ee8568031ee05 - 81.34% (10.6 MB)
[#004] sha256:5f9fcc5b8fb571a3e98e937c11c9fbb8762d125eb86f9af8b446867fbcaa35a0 - 0.05% (6.53 KB)
[#005] sha256:30556b1ffe2e712467d809cdecffd1dbee9d57ce05350ea7f5e3017bb09daf48 - 0.0% (129 Bytes)
[#006] sha256:ddb3d486d8275fdef95325354e97ffca633e099a2bd6ad8c961595ac8644b290 - 0.0% (173 Bytes)
[#007] sha256:3195be61081a6cad1b7db985d3338b4c602e9ca3ccc9ff7bf151798cc5e6f90e - 0.02% (2.32 KB)
[#008] sha256:100fc57847a316ef2715fdb9faa59cdcf93b35f6890b1ac4bac409ec60102b44 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:ab106eb2cf4bf0e1ca7861a56dc24e44dd206fd3ae8d3587684324e5c11136f4 in /
2019-04-10 11:42:23 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-04-10 14:27:01 UTC/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"
2019-04-10 14:27:02 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-04-10 14:27:05 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-04-10 14:53:05 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2019-04-10 14:53:06 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.21
2019-04-10 14:53:07 UTC/bin/sh -c #(nop) ENV PG_SHA256=0049b4d239a00654e792997aff32a0be7a6bdd922b5ca97f1a06797cd4d06006
2019-04-10 14:57:20 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2019-04-10 14:57:22 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-04-10 14:57:24 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-04-10 14:57:25 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-04-25 12:27:16 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-04-25 12:27:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-04-25 12:27:20 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-04-25 12:27:21 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-04-25 12:27:22 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-04-25 12:27:22 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-04-25 12:27:22 UTC/bin/sh -c #(nop) CMD ["postgres"]