docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:13.2-alpine
sha256:0ff395fe7ecde14111fb8e64f54e50ddb2232fd990d71cad584e38ac60566e6a
2021-04-15 06:13:58 UTC
62.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2565fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
PG_VERSION13.2
[#000] sha256:31b7e7ccca9e17fd08b39c9a4ffd3ded380b62816c489d6c3758c9bb5a632430 - 4.28% (2.69 MB)
[#001] sha256:f5d598db5bdb56bc14bf75398a61d3a0d982e72260a1108a46665627a73212d0 - 0.0% (1.25 KB)
[#002] sha256:dc60ee1989b27c3c75961dc0e2a874021e7626fcaf8c4e289d05df49a78c40cd - 0.0% (149 Bytes)
[#003] sha256:988645f990eb6a5bf500e7e8d9b612dbcee16fd32863c43882208783cccb4e86 - 95.7% (60.1 MB)
[#004] sha256:eb490636fc77bb5424751b0423d0ac1030903ec6369c77e0e242fed9cd79864e - 0.01% (8.37 KB)
[#005] sha256:63b7f98b567e31ade445945c590f33456a39eb78c2639fda1522585d44e4b47e - 0.0% (161 Bytes)
[#006] sha256:3a49a8f520f3219e2e72f225950e53e4f4b5f12e1a301780789143cf6b8176e4 - 0.0% (193 Bytes)
[#007] sha256:2575f8f4b09f70e170f6cb02fad327ca15dac937fab387a3f30a005d66976b76 - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:36634145ad6ec95a6b1a4f8d875f48719357c7a90f9b4906f8ce74f71b28c19d in /
2021-04-14 18:38:29 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-04-15 06:08:09 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-04-15 06:08:09 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-04-15 06:08:10 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-04-15 06:08:10 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-04-15 06:08:11 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.2
2021-04-15 06:08:11 UTC/bin/sh -c #(nop) ENV PG_SHA256=5fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
2021-04-15 06:13:54 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
2021-04-15 06:13:55 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-04-15 06:13:56 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-04-15 06:13:56 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-04-15 06:13:57 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-04-15 06:13:57 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-04-15 06:13:57 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-04-15 06:13:58 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-04-15 06:13:58 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-04-15 06:13:58 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-04-15 06:13:58 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:e43172f9204f3f2ec21165200338d5d918a86e2984b2c75a36b18cffd9a948b4
2021-04-15 03:52:09 UTC
59.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2565fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
PG_VERSION13.2
[#000] sha256:540db60ca9383eac9e418f78490994d0af424aab7bf6d0e47ac8ed4e2e9bcbba - 4.52% (2.68 MB)
[#001] sha256:a3cb73039552ea36b22e7ea1fabf738b87f83b2c9347901ce77b79c790389bb7 - 0.0% (1.25 KB)
[#002] sha256:39855706e49a3eeebf4c28a2ff3d706c5cdbe7bb1726d272188f08e91a46bfb8 - 0.0% (149 Bytes)
[#003] sha256:74e3b91ca207933c4263573de4f7068728b71af3de813e333c4ee441044eb6a8 - 95.46% (56.7 MB)
[#004] sha256:61c8cceb594b920cea48c417e53be414df4a8c4cb4c835587e85efaa0f35eb34 - 0.01% (8.36 KB)
[#005] sha256:a63418dfbd97fdcaeda2890ad4628843dbba44aa21aa4180714fa5c229a28e6f - 0.0% (162 Bytes)
[#006] sha256:cb8adc73d3af8212747784e0debf0aa5e0551399854bf502136435255b898baa - 0.0% (194 Bytes)
[#007] sha256:d6a2a57ca5f851230bf8485d6b6188f55a37412a0f720aa4d9f298d9ef69d3c7 - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:8ec69d882e7f29f0652d537557160e638168550f738d0d49f90a7ef96bf31787 in /
2021-04-14 19:19:39 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-04-15 03:44:32 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-04-15 03:44:32 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-04-15 03:44:33 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-04-15 03:44:33 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-04-15 03:44:34 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.2
2021-04-15 03:44:34 UTC/bin/sh -c #(nop) ENV PG_SHA256=5fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
2021-04-15 03:52:00 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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
2021-04-15 03:52:03 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-04-15 03:52:04 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-04-15 03:52:05 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-04-15 03:52:07 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-04-15 03:52:07 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-04-15 03:52:08 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-04-15 03:52:08 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-04-15 03:52:08 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-04-15 03:52:09 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-04-15 03:52:09 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:b5244fbe9f4369d67c445ce3a74891fc93f1f1bdb9bc77e43c0f75ac035fde57
2021-04-15 02:47:38 UTC
57.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2565fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
PG_VERSION13.2
[#000] sha256:740c950346cf39c85b52576998695c9b909c24a58a8bb1b64cce91fda3ef1d3a - 4.33% (2.5 MB)
[#001] sha256:eb015ae0de556d839b1cce178f0d7aac974efbf85f07dae41e1cb18f4704b7f2 - 0.0% (1.25 KB)
[#002] sha256:ce063f2d27607cdd3336512bf1e2cdeb8caa1488efded3002dcaf4c6c267a296 - 0.0% (149 Bytes)
[#003] sha256:1a9d8499b6e9e8c2c5ed995a2671811533ed393ce5e711ee31618ea293155c1e - 95.65% (55.3 MB)
[#004] sha256:00684a87abeabba407f80bd5340e365fd48173670f93c3187b608dbf068407c9 - 0.01% (8.37 KB)
[#005] sha256:32a6f7bf404f13903acbae2c14d0f4fd3385e0ebcd28027df62df3ad81320acb - 0.0% (161 Bytes)
[#006] sha256:40bfa883a567f896d138578aa79bb5af169cdb785bd1d24046a559b42751c595 - 0.0% (196 Bytes)
[#007] sha256:aeed68755c947cf32af4be4c40762060adcf58dab2b9638b25f42c37f4ee8abc - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:4479f0a51530e039edf231d87201896dcff908aa542a613cdccb015f93dda8a3 in /
2021-04-14 18:49:40 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-04-15 02:39:44 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-04-15 02:39:45 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-04-15 02:39:48 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-04-15 02:39:50 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-04-15 02:39:53 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.2
2021-04-15 02:39:54 UTC/bin/sh -c #(nop) ENV PG_SHA256=5fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
2021-04-15 02:44:25 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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
2021-04-15 02:44:41 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-04-15 02:45:21 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-04-15 02:45:26 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-04-15 02:46:36 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-04-15 02:46:56 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-04-15 02:47:10 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-04-15 02:47:19 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-04-15 02:47:21 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-04-15 02:47:30 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-04-15 02:47:38 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:020e4d948fa9f2709e07fe8b9789f690bbe1ee21f55bfdbffdc49c85ba35b355
2021-04-15 03:50:22 UTC
54.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2565fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
PG_VERSION13.2
[#000] sha256:e160e00eb35d5bc2373770873fbc9c8f5706045b0b06bfd1c364fcf69f02e9fe - 4.21% (2.31 MB)
[#001] sha256:d289031c7f8e86cc05ec575d7c122bc6d615e827ae76e96bca00fd9b0bba9dfb - 0.0% (1.25 KB)
[#002] sha256:65b79752b7fbad651a271862e12e829d3ce7258cfa9386e5945f7c4232008d57 - 0.0% (148 Bytes)
[#003] sha256:9a56ba0e3ceb3ef8455d3fb33d36f8a121aa607653fb47fe8df1e33ec86701f4 - 95.77% (52.6 MB)
[#004] sha256:538a94b8e7debb4b462f058eaedf6c097700e9f7ae4e4ee33bd824dc786a160d - 0.01% (8.37 KB)
[#005] sha256:c230624ff515cd06b20372da44a1795ff536dc2c8fcd79db4d063a52335e88be - 0.0% (163 Bytes)
[#006] sha256:91137073100ed8efdd03ec8c5549ce41fcdd691dcc7304c81e92f0f934c19eef - 0.0% (194 Bytes)
[#007] sha256:2d86f9e7eace98b46ddcccd4a660e3cb6de16ece5e0b3581c8fc4da724340800 - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:028c5b473d862250586e174c5dd19b37f8fc3bffbc02d888e72df30f32fd6129 in /
2021-04-14 18:57:39 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-04-15 03:45:28 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-04-15 03:45:30 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-04-15 03:45:35 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-04-15 03:45:36 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-04-15 03:45:38 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.2
2021-04-15 03:45:39 UTC/bin/sh -c #(nop) ENV PG_SHA256=5fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
2021-04-15 03:49:51 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
2021-04-15 03:49:58 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-04-15 03:50:04 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-04-15 03:50:05 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-04-15 03:50:11 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-04-15 03:50:13 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-04-15 03:50:15 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-04-15 03:50:17 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-04-15 03:50:19 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-04-15 03:50:20 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-04-15 03:50:22 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:258269eae836a530ed45416425ae68ecc8fcc5497d64537df4c74a140739c3be
2021-04-15 06:27:09 UTC
58.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2565fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
PG_VERSION13.2
[#000] sha256:595b0fe564bb9444ebfe78288079a01ee6d7f666544028d5e96ba610f909ee43 - 4.41% (2.59 MB)
[#001] sha256:343d254f5bda6431d4dc0605dac9afc2ec2451bb699bf4fb33ba376136dd6667 - 0.0% (1.25 KB)
[#002] sha256:94173ef17c9429dd105f2740fe97f3abcddc3d368f05478b43414fd1e3c0d89c - 0.0% (147 Bytes)
[#003] sha256:b1732827bd555ca82521db1f02bf3a7d7d8b7540da3f8339b5a2b27737229272 - 95.57% (56.1 MB)
[#004] sha256:0bacf9b4d489f5bbfbe231f45ef1cc81ccc71df6c19773e597d6d8286fcaafb4 - 0.01% (8.37 KB)
[#005] sha256:592d5197fc178e8a6f14b9458619eaf1d7347d02eec69f7fe991506ec905619a - 0.0% (160 Bytes)
[#006] sha256:78450ea3700762521eee0f7a9ac5f786cf798c6832b4a03b610f972c9776ea33 - 0.0% (193 Bytes)
[#007] sha256:1f8cd65c72c63bf0f2b4627cd5f0f21fa70e82948dd88a371390ea128b208e10 - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:ca9d8b5d1cc2f2186983fc6b9507da6ada5eb92f2b518c06af1128d5396c6f34 in /
2021-04-14 18:42:38 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-04-15 06:22:54 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-04-15 06:22:55 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-04-15 06:22:58 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-04-15 06:22:59 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-04-15 06:23:00 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.2
2021-04-15 06:23:00 UTC/bin/sh -c #(nop) ENV PG_SHA256=5fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
2021-04-15 06:26:45 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
2021-04-15 06:26:49 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-04-15 06:26:52 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-04-15 06:26:54 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-04-15 06:26:59 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-04-15 06:27:00 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-04-15 06:27:02 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-04-15 06:27:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-04-15 06:27:05 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-04-15 06:27:07 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-04-15 06:27:09 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:bb9b124f49948b5ad5fadddf4207acf484549a6125758cc44b945744735b8b78
2021-04-15 04:43:28 UTC
61.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2565fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
PG_VERSION13.2
[#000] sha256:771d2590aa602a0d4a922e322f02b22cc9d193f8cd159d9d1a140cadf1f8b4d4 - 4.35% (2.68 MB)
[#001] sha256:85f26f1d1b4701765dc7858aba1bef999c1ba3b78d85ae321be21792492595da - 0.0% (1.25 KB)
[#002] sha256:6c0eecc487c054210f70b7f1edd080c1373eb1ca361753079d68703ae4d81948 - 0.0% (149 Bytes)
[#003] sha256:4d9d0b78788d1233dd911e6a1a84ac71f5557e5c73c3ac38c190532e77007bbb - 95.63% (59 MB)
[#004] sha256:38c5ab5a070da44629124c084516740bca6f2937079fe178f5cc6d01fb1de478 - 0.01% (8.36 KB)
[#005] sha256:f21c0d5b07c2b59fca54231cb6bbffc2dd5e0f89a51afd8d3c49d19abc59fdc2 - 0.0% (161 Bytes)
[#006] sha256:77885f49fce8f4ae05232155d705b8b82a5505f4d517243376c6927f63fadda4 - 0.0% (194 Bytes)
[#007] sha256:f8c3eef56d21c002ad8a167452eecb496d6ce246279c5a54cb3048bd3678ac0a - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:52162c4413e3597dad4ccb790c379b67ef40d50c0d0659e8b6c65d833886b3af in /
2021-04-14 19:31:02 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-04-15 04:37:26 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-04-15 04:37:29 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-04-15 04:37:35 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-04-15 04:37:37 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-04-15 04:37:42 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.2
2021-04-15 04:37:50 UTC/bin/sh -c #(nop) ENV PG_SHA256=5fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
2021-04-15 04:42:12 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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
2021-04-15 04:42:27 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-04-15 04:42:41 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-04-15 04:42:45 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-04-15 04:42:59 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-04-15 04:43:06 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-04-15 04:43:10 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-04-15 04:43:13 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-04-15 04:43:17 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-04-15 04:43:21 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-04-15 04:43:28 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:b47539d4eb660826b58fc15a75e28732979a0deaebc74eb9ba05dfc2f12347b9
2021-04-15 02:39:13 UTC
62 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA2565fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
PG_VERSION13.2
[#000] sha256:afadee6ad6a38d3172beeeca818219604c782efbe93201ef4d39512f289b05ae - 4.0% (2.48 MB)
[#001] sha256:f539beccb9c12dbbd5eb5238188d7421b0e766e3e536f47e5a25dce4187b138f - 0.0% (1.25 KB)
[#002] sha256:78639c932051e59362713e29f35ff376c4cd5627ea231422efbf7cf7b253ec7a - 0.0% (149 Bytes)
[#003] sha256:8881001efd9e26d59df540c8bf660be9a51bf8dc52ddd7434c13b3b6db5f38bd - 95.97% (59.5 MB)
[#004] sha256:3606bd65cbbe39ae39be8a4ffce2ca69fa6ea7cfb25c4b5af66c4ca6db081e1f - 0.01% (8.36 KB)
[#005] sha256:e2b902d00923a34c4468e4a845f223f86a8dd04fb373ab043a1a452b24e38ea0 - 0.0% (163 Bytes)
[#006] sha256:5573da465d50870ecac670ceffa656dbbdca753a68f0fa655ca78dbdc3295137 - 0.0% (193 Bytes)
[#007] sha256:62eb50772e74ec79de1c9331578fe5084abda795e3028e5d7e9d7db67558f2c8 - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:c715fef757fe2b022ae1bbff71dbc58bddf5a858deb0aac5a6fbcf10d5f3111c in /
2021-04-14 18:41:36 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-04-15 02:35:26 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-04-15 02:35:26 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-04-15 02:35:27 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-04-15 02:35:27 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-04-15 02:35:28 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.2
2021-04-15 02:35:28 UTC/bin/sh -c #(nop) ENV PG_SHA256=5fd7fcd08db86f5b2aed28fcfaf9ae0aca8e9428561ac547764c2a2b0f41adfc
2021-04-15 02:39:07 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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
2021-04-15 02:39:10 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-04-15 02:39:11 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-04-15 02:39:11 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-04-15 02:39:12 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-04-15 02:39:12 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-04-15 02:39:12 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-04-15 02:39:12 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-04-15 02:39:13 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-04-15 02:39:13 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-04-15 02:39:13 UTC/bin/sh -c #(nop) CMD ["postgres"]