Namespace
library
Image / Tag
postgres:11.9-alpine
Content Digest
sha256:b57ab77e7888c37a8ad064fb45a8d8a88bde7151d2b889f88a807d4194756397
Details
Created

2020-10-22 10:05:19 UTC

Size

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

11

PG_SHA256

35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635

PG_VERSION

11.9


Layers

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

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

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

[#003] sha256:71596638f4cb5ee55cb116399fdb509d66c3149edddf1f094c943180fea0152b - 95.6% (58.1 MB)

[#004] sha256:0f3fbbc039d845be147cf1e8ade909c608fce49f780fc305499335342af47da3 - 0.01% (7.39 KB)

[#005] sha256:3286005b39b93266d34cf1832ade3eb57c05f145665df52bbef3ca0e2a0ed8cf - 0.0% (130 Bytes)

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

[#007] sha256:94e4b7f4fcd7fbb1c3422e9ab1130b63d9c872177a9b6baec8d0d75f7e4b81b1 - 0.01% (4.16 KB)

[#008] sha256:2c3e67d5de4f44cadd77e74959c6283063ff9be8208dd89011b87431c5c0e165 - 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 09:56:33 UTC

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

2020-10-22 09:56:33 UTC

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

2020-10-22 09:56:33 UTC

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

2020-10-22 10:05:14 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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:05:15 UTC

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

2020-10-22 10:05:16 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:05:16 UTC

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

2020-10-22 10:05:17 UTC

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

2020-10-22 10:05:17 UTC

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

2020-10-22 10:05:17 UTC

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

2020-10-22 10:05:18 UTC

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

2020-10-22 10:05:18 UTC

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

2020-10-22 10:05:18 UTC

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

2020-10-22 10:05:18 UTC

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

2020-10-22 10:05:19 UTC

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

Details
Created

2020-10-22 08:12:04 UTC

Size

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

11

PG_SHA256

35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635

PG_VERSION

11.9


Layers

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

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

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

[#003] sha256:d058ff3c2e76b5b2b73fe978d13098a08147a1ab7a3626aaf9ad2a517063ac4d - 95.34% (54.8 MB)

[#004] sha256:a78813ef71e2f8248d9cef38ce7fe0eca079e0e68c4c583d6260740ae187581a - 0.01% (7.39 KB)

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

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

[#007] sha256:779826b7296000ccf24486a5877f8f0f55a7f3bc61fa1d3549b4ca43c12d7bed - 0.01% (4.16 KB)

[#008] sha256:7019d6614cc2989650b8c2d6c20716e6bb45b449f457c92c71e1fc7157d9161c - 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:06:44 UTC

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

2020-10-22 08:06:44 UTC

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

2020-10-22 08:06:44 UTC

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

2020-10-22 08:11:59 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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:12:00 UTC

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

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

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

2020-10-22 08:12:02 UTC

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

2020-10-22 08:12:02 UTC

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

2020-10-22 08:12:02 UTC

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

2020-10-22 08:12:03 UTC

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

2020-10-22 08:12:03 UTC

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

2020-10-22 08:12:03 UTC

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

2020-10-22 08:12:03 UTC

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

2020-10-22 08:12:04 UTC

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

Details
Created

2020-10-22 09:09:27 UTC

Size

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

11

PG_SHA256

35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635

PG_VERSION

11.9


Layers

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

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

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

[#003] sha256:c0c75827a5b01990441c306c995d7fcda9425c0bade77bbf0c66825580af0273 - 95.53% (53.3 MB)

[#004] sha256:738b7fda4e13330b340ba0fbd9aa4911c7260abe0650464553a0010585f70c33 - 0.01% (7.39 KB)

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

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

[#007] sha256:f56588f7e97f957dc6dbe292261447a7f660b7275f367a710fcacde53926f8e4 - 0.01% (4.16 KB)

[#008] sha256:8578c7dc3e8da1e729ad0ea6deb3919c7a835d131b1e30527e8cfd7c8c49125a - 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:04:59 UTC

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

2020-10-22 09:05:00 UTC

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

2020-10-22 09:05:02 UTC

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

2020-10-22 09:09:13 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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:09:16 UTC

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

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

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

2020-10-22 09:09:20 UTC

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

2020-10-22 09:09:21 UTC

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

2020-10-22 09:09:21 UTC

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

2020-10-22 09:09:23 UTC

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

2020-10-22 09:09:23 UTC

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

2020-10-22 09:09:24 UTC

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

2020-10-22 09:09:25 UTC

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

2020-10-22 09:09:27 UTC

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

Details
Created

2020-10-22 09:07:31 UTC

Size

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

11

PG_SHA256

35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635

PG_VERSION

11.9


Layers

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

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

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

[#003] sha256:8744965d85a887a1a7a3dced6f0202ead4d55efa0b7588528f7735586c3b5683 - 95.65% (50.8 MB)

[#004] sha256:45a06383560e1db5eac489179766919bc67da0f176d9160c272b1146b7278e8d - 0.01% (7.4 KB)

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

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

[#007] sha256:94f2fe42f6b532ccae3c1aee2136e59777b73fcb03fae56366c0c14398bbdb2b - 0.01% (4.16 KB)

[#008] sha256:29147edddff1f66375d08dc6df6c1681e26699760f8e37dbae1ff786e5615d54 - 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:04:07 UTC

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

2020-10-22 09:04:08 UTC

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

2020-10-22 09:04:09 UTC

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

2020-10-22 09:07:17 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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:07:20 UTC

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

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

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

2020-10-22 09:07:25 UTC

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

2020-10-22 09:07:26 UTC

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

2020-10-22 09:07:27 UTC

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

2020-10-22 09:07:28 UTC

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

2020-10-22 09:07:29 UTC

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

2020-10-22 09:07:30 UTC

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

2020-10-22 09:07:30 UTC

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

2020-10-22 09:07:31 UTC

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

Details
Created

2020-10-22 08:33:57 UTC

Size

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

11

PG_SHA256

35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635

PG_VERSION

11.9


Layers

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

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

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

[#003] sha256:94e62537e567035c5999657615bd736409c64f41e942b3f87e615c66ae52a8cb - 95.46% (54.5 MB)

[#004] sha256:f23fb5551ecc716a44734ad6358e1e78e7e79c98a3a9f96de760c29cb33890c5 - 0.01% (7.4 KB)

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

[#006] sha256:cc4f31d3813ec635ab947d8920d2f5c647368804aaa6daf6534a2c760881cf88 - 0.0% (197 Bytes)

[#007] sha256:bda57f6651ce34adfa7b1c188d1d9db8089308598f50a74690d4c7ece8abc5db - 0.01% (4.16 KB)

[#008] sha256:8953d6050ea0981260cd058299c4cdf3393cbec496c99879bd52cbcfb9702ae9 - 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:30:28 UTC

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

2020-10-22 08:30:30 UTC

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

2020-10-22 08:30:31 UTC

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

2020-10-22 08:33:41 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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:33:45 UTC

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

2020-10-22 08:33:46 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:33:47 UTC

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

2020-10-22 08:33:49 UTC

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

2020-10-22 08:33:49 UTC

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

2020-10-22 08:33:50 UTC

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

2020-10-22 08:33:52 UTC

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

2020-10-22 08:33:53 UTC

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

2020-10-22 08:33:53 UTC

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

2020-10-22 08:33:54 UTC

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

2020-10-22 08:33:57 UTC

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

Details
Created

2020-10-22 23:25:48 UTC

Size

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

11

PG_SHA256

35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635

PG_VERSION

11.9


Layers

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

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

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

[#003] sha256:434f5cc8bd1952e121344b168a2a7e334ca70d490db66387ba551f2f1a4a2d48 - 95.5% (57 MB)

[#004] sha256:b0292c074ce16b8b026585acdebbb046b4901b84bc639e6ab8bd60371b52c8e5 - 0.01% (7.4 KB)

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

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

[#007] sha256:12379fdc1e3a797357d0406ab4c297be3e1f7d71ae8bce1a0cb80131ff87a8d1 - 0.01% (4.16 KB)

[#008] sha256:ed0c39df09c3fe43f59cc37322b5b117a826e78f0e9c135bc11dfbd28e882b51 - 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:18:56 UTC

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

2020-10-22 23:19:01 UTC

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

2020-10-22 23:19:07 UTC

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

2020-10-22 23:23:53 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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:24:19 UTC

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

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

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

2020-10-22 23:25:01 UTC

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

2020-10-22 23:25:07 UTC

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

2020-10-22 23:25:12 UTC

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

2020-10-22 23:25:26 UTC

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

2020-10-22 23:25:31 UTC

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

2020-10-22 23:25:39 UTC

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

2020-10-22 23:25:43 UTC

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

2020-10-22 23:25:48 UTC

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

Details
Created

2020-10-22 09:19:48 UTC

Size

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

11

PG_SHA256

35618aa72e0372091f923c42389c6febd07513157b4fbb9408371706afbb6635

PG_VERSION

11.9


Layers

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

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

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

[#003] sha256:16148ba1fe81ee03e8fdbf5fb9ce5523b8798aaa9465d9a7ff5c0dd0533bffcc - 95.86% (56.9 MB)

[#004] sha256:51732098e722381869f1257190ef464936f5127a37b42c1695ce83fd1c33e919 - 0.01% (7.39 KB)

[#005] sha256:4b9bcba9fb70dd7b486ce2c771b2d707722abb9cd18e06b94cdfd76c14c25b54 - 0.0% (162 Bytes)

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

[#007] sha256:c546facf07eea426dca0daebf1c23549a916bf05fb8d8100c4d98b46ca2db4df - 0.01% (4.16 KB)

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

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

2020-10-22 09:15:08 UTC

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

2020-10-22 09:15:08 UTC

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

2020-10-22 09:19: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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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:19:38 UTC

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

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

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

2020-10-22 09:19:42 UTC

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

2020-10-22 09:19:43 UTC

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

2020-10-22 09:19:43 UTC

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

2020-10-22 09:19:45 UTC

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

2020-10-22 09:19:46 UTC

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

2020-10-22 09:19:46 UTC

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

2020-10-22 09:19:47 UTC

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

2020-10-22 09:19:48 UTC

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