docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:12.2-alpine
sha256:591c09bc3d225c07a03a4b8e57cc7863b93534218b3b6871174a326d36ab84b0
2020-04-24 08:13:30 UTC
60.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
PG_VERSION12.2
[#000] sha256:2826c1e79865da7e0da0a993a2a38db61c3911e05b5df617439a86d4deac90fb - 4.45% (2.68 MB)
[#001] sha256:a40ec1727ae78424ec003d6b3506985950e6d173ecedacfc6d96b4803ec3fd24 - 0.0% (1.22 KB)
[#002] sha256:adaab1850ecb85cd8d44baa5bb4784f13183b1419bc09a56384105985dd11a45 - 0.0% (115 Bytes)
[#003] sha256:56797195b50aade480a78ca26fb08c6a74a5a64b8810cd1f8b90f6ec49980ce8 - 95.53% (57.5 MB)
[#004] sha256:481f1439aeb35ffd2b39484d27bfa7a656b7d174f64bfd92f098f6ac4571e00a - 0.01% (8.02 KB)
[#005] sha256:65b8c877d970b63c08eaff98920d2f18b67d90a291d07854b24124a30b949981 - 0.0% (128 Bytes)
[#006] sha256:d4a0c839368283f040b66c86917ff8bd46a8cac546b516fad4e796360865c3bc - 0.0% (163 Bytes)
[#007] sha256:92b37d061d5f06a1dc0b11a934728b19c45cafcc39aa4e4ff4384650da049b95 - 0.01% (4.16 KB)
/bin/sh -c #(nop) ADD file:63bd8a316cba8c404cc2e32a5120406c24aee8db3224c469a6077b941d900863 in /
2020-04-23 21:16:04 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 08:04:33 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-04-24 08:04:33 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 08:04:34 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 08:04:34 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-04-24 08:04:35 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.2
2020-04-24 08:04:35 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
2020-04-24 08:13:27 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 linux-headers llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-04-24 08:13:28 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 08:13:28 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 08:13:29 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 08:13:29 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 08:13:30 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 08:13:30 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-04-24 08:13:30 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 08:13:30 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 08:13:30 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:ae192c4d3adaebbbf2f023e1e50eaadfabccb6b08c855ac13d6ce2232381a58a
2020-04-24 17:17:17 UTC
57 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
PG_VERSION12.2
[#000] sha256:cbdbe7a5bc2a134ca8ec91be58565ec07d037386d1f1d8385412d224deafca08 - 4.7% (2.68 MB)
[#001] sha256:b52a8a2ca21a6b2f35ce4b89cf728e4fa7d53206b2a18ab3fa1a285e0bfe4726 - 0.0% (1.22 KB)
[#002] sha256:e36a19831e31f1aa75ef228b7a788b936a99bd97f74d7a6967e4379bd807d680 - 0.0% (115 Bytes)
[#003] sha256:f4dcdeed24b7e79c441b7b6de4c85a6979201d6862a29e33455036c70756fcae - 95.27% (54.3 MB)
[#004] sha256:e261f2444b0ab97ec8d198c446cda0c4b1236b0cdd1fe5ea129f99859be70938 - 0.01% (8.02 KB)
[#005] sha256:0ff301de3ecfeb2c06df11938a303b7e7f3d321b619a80b697f983127c4e5563 - 0.0% (129 Bytes)
[#006] sha256:1d858bf02c95335e7e85407bbdec4fe51d6d313be1ca3fe6079bc57652f4a982 - 0.0% (164 Bytes)
[#007] sha256:7958b7df2951ee799b326792148ebd316577984f499fb12d2c8a0d3ee2386624 - 0.01% (4.16 KB)
/bin/sh -c #(nop) ADD file:b91adb67b670d3a6ff9463e48b7def903ed516be66fc4282d22c53e41512be49 in /
2020-04-24 01:05:03 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 17:11:48 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-04-24 17:11:48 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 17:11:49 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 17:11:49 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-04-24 17:11:49 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.2
2020-04-24 17:11:49 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
2020-04-24 17:17:14 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 linux-headers llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-04-24 17:17:14 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 17:17:15 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 17:17:15 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 17:17:16 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 17:17:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 17:17:16 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-04-24 17:17:17 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 17:17:17 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 17:17:17 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:aa612e6b4d60863c46b93300d0c602b78f75753df59576e53d92d366c2de3bed
2020-04-23 20:02:19 UTC
55.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
PG_VERSION12.2
[#000] sha256:b9e3228833e92f0688e0f87234e75965e62e47cfbb9ca8cc5fa19c2e7cd13f80 - 4.5% (2.5 MB)
[#001] sha256:2a0fe18342defa413ae03aef3e0942cb59be0cd23d148c8f00345d83bdd3caf9 - 0.0% (1.24 KB)
[#002] sha256:1dd53a6698d4905175d063c44335ca7e40d621093d6a69b00b07a084b41811b6 - 0.0% (149 Bytes)
[#003] sha256:469de510247efc5180b9117348a1a0fe920c6607a4add236ca2eef30750a9980 - 95.47% (53 MB)
[#004] sha256:c56872d4c4fceb0398caa867d25123320fbb09d51f32217ba3ca218d74d18322 - 0.01% (8.02 KB)
[#005] sha256:c20243a54ab280b8e0ccddc16c324c6bd5b86106a55fc80b803dec9f9d19b07c - 0.0% (162 Bytes)
[#006] sha256:e8a0fe6cf9fcd46f3ec1d0a910649a864d98b76347f9e1a14a3ee80736de29e0 - 0.0% (194 Bytes)
[#007] sha256:2c1453d503ffd94311eba73279237c5980e808b6193799af64444beb0ad7022e - 0.01% (4.16 KB)
/bin/sh -c #(nop) ADD file:cc0770cddff6b50d5e31f39886420eb8a0b4af55664d6f7599207c9aeaf6a501 in /
2020-04-23 15:51:25 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-23 19:57:11 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-04-23 19:57:12 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-23 19:57:14 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-23 19:57:16 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-04-23 19:57:17 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.2
2020-04-23 19:57:17 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
2020-04-23 20:02:00 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 linux-headers llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-04-23 20:02:06 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-23 20:02:10 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-23 20:02:11 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-23 20:02:13 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-23 20:02:14 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-23 20:02:15 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-04-23 20:02:17 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-23 20:02:18 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-23 20:02:19 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:e61e4c52b0950309833479de32b53edd629a2790516b4f36b8520a55957136dd
2020-04-24 08:36:46 UTC
52.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
PG_VERSION12.2
[#000] sha256:3cfb62949d9d8613854db4d5fe502a9219c2b55a153043500078a64e880ae234 - 4.37% (2.31 MB)
[#001] sha256:92d4bbcefb265020b323ff09da302c8b4ee3db8f6da7d0de3d3ea655798ff865 - 0.0% (1.25 KB)
[#002] sha256:98e53cbfc4447cbfa4e0f492480f510e5bac84d1397e9f66a8dc7a57186a7772 - 0.0% (149 Bytes)
[#003] sha256:88bd7548340b2bb2d77a5e1bc26c5bc3417240474da5015765b14a7eddedd7c1 - 95.61% (50.6 MB)
[#004] sha256:b03d1bfbe7725b575f2212ae68529677683668f41ac2ceb18665279218682c35 - 0.01% (8.02 KB)
[#005] sha256:86318bbe432d00f2c7c0629faae7c32a6d3698ccce8f05fae0cc6d4f22d3736e - 0.0% (163 Bytes)
[#006] sha256:8247aae7e0775afa5b3f994f066a51cbf0b135fb2eb330e0846782d7eca74255 - 0.0% (195 Bytes)
[#007] sha256:094e3e6896a3a2401829cedfb0dad7186b85024bb462c0df561414f82285aae8 - 0.01% (4.16 KB)
/bin/sh -c #(nop) ADD file:33578d3cacfab86c195d99396dd012ec511796a1d2d8d6f0a02b8a055673c294 in /
2020-04-23 22:04:22 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 08:33:33 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-04-24 08:33:34 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 08:33:36 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 08:33:36 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-04-24 08:33:38 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.2
2020-04-24 08:33:38 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
2020-04-24 08:36:35 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 linux-headers llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-04-24 08:36:37 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 08:36:40 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 08:36:41 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 08:36:43 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 08:36:43 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 08:36:44 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-04-24 08:36:45 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 08:36:46 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 08:36:46 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:a2888f9e1a1ca499044e002ee78e912c0ff3c54a7672a86ffe1c16d0622e0168
2020-04-24 14:12:24 UTC
56.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
PG_VERSION12.2
[#000] sha256:29e5d40040c18c692ed73df24511071725b74956ca1a61fe6056a651d86a13bd - 4.59% (2.6 MB)
[#001] sha256:e2deb5bf01f13e32487d25d3e9a01a520f37169eb3947129cd16b8cf850d5bab - 0.0% (1.25 KB)
[#002] sha256:b7d56ad23dde28bb28a0df49e642e38f043a63a0c8d44cf228044eff1827de50 - 0.0% (149 Bytes)
[#003] sha256:fcbec37757899f6b5922480b839a57da840fcba53f56c11bedaf61a4f113bf14 - 95.39% (54 MB)
[#004] sha256:873428abcbde2c7aeafeefdbadfc89c8d6a7691be6f469e6213af91606dc55da - 0.01% (8.02 KB)
[#005] sha256:5fafe18e027a702bb3f9646adf58f2f608a93e3ea7b1cdc18b8debed652b658e - 0.0% (161 Bytes)
[#006] sha256:b83285572980f8de7b9d20072145f1a5c81d4df2feba1adb6d2668127add2d83 - 0.0% (194 Bytes)
[#007] sha256:6e19d03ed6aea4765f0634cc6e1ce313b634cd239c838704fab60c44bb45fb06 - 0.01% (4.16 KB)
/bin/sh -c #(nop) ADD file:85ae77bc1e43353ff14e6fe1658be1ed4ecbf4330212ac3d7ab7462add32dd39 in /
2020-04-24 00:14:21 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 14:08:36 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-04-24 14:08:38 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 14:08:42 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 14:08:43 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-04-24 14:08:45 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.2
2020-04-24 14:08:46 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
2020-04-24 14:12:10 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 linux-headers llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-04-24 14:12:15 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 14:12:18 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 14:12:18 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 14:12:20 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 14:12:21 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 14:12:21 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-04-24 14:12:22 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 14:12:23 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 14:12:24 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:096a8a08e656d96503b79bc5477fdb48d7c821eac10973e0dae07f81fab23a30
2020-04-24 06:33:18 UTC
59.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
PG_VERSION12.2
[#000] sha256:9a8fdc5b698322331ee7eba7dd6f66f3a4e956554db22dd1e834d519415b4f8e - 4.55% (2.69 MB)
[#001] sha256:c8df1307f81687eb57717789c618ebcae3d1f81c5c155bdd5b96e38d71bb9747 - 0.0% (1.26 KB)
[#002] sha256:b7c05d9c9ea5c9eb70234c2443b1e0a454ba2f750d808560d28fa8ed32229167 - 0.0% (149 Bytes)
[#003] sha256:eaa8b28ef33771d92e940325e99e0f3a072405c5d20fca70f62b14f664df5492 - 95.43% (56.5 MB)
[#004] sha256:7c70028ea664c8dcf22b4d4565e416b581d9f9ad3ca3457b33a09d25d8f20125 - 0.01% (8.02 KB)
[#005] sha256:9ba4787b9ac52994bd8cee93d2b844fe00aa0cc0d04aacb6d065a1b32565ae77 - 0.0% (160 Bytes)
[#006] sha256:ab105c0e8f3dc101e452583324f68b24f8b050a748ef2982134243204abe7432 - 0.0% (194 Bytes)
[#007] sha256:b112ece6b4a2c7a4d8ed54e4b08aeea910ad43c1caea68528e4acb16a2d0138e - 0.01% (4.16 KB)
/bin/sh -c #(nop) ADD file:1aaebe252dfb1885e066fcbc84aaa915bae149c3608f19600855ad1d4f7450c1 in /
2020-04-23 20:39:06 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 06:26:20 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-04-24 06:26:26 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 06:26:37 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 06:26:41 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-04-24 06:26:45 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.2
2020-04-24 06:26:53 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
2020-04-24 06:32: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 linux-headers llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-04-24 06:32:36 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 06:32:46 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 06:32:51 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 06:32:59 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 06:33:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 06:33:04 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-04-24 06:33:10 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 06:33:14 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 06:33:18 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:21c44f387f9ecb2bec60a54b72f8ef4c66fc2ae3aaa69cb25d6491294773eb03
2020-04-24 06:49:03 UTC
59.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
PG_VERSION12.2
[#000] sha256:7184c046fdf17da4c16ca482e5ede36e1f2d41ac8cea9c036e488fd149d6e8e7 - 4.17% (2.46 MB)
[#001] sha256:8fde159b9a8b82bd8df9811d19510149c4b99ee867783653adaab28baa4143ae - 0.0% (1.25 KB)
[#002] sha256:7825d6effaa586d60a176215d9f11ecd1bd76c6afe3e47f50f6259ad464598b3 - 0.0% (149 Bytes)
[#003] sha256:6c8c4a4ffa9b1e0e078bae49c667ba18f338ff098600853c88f8dfb62fac9845 - 95.81% (56.6 MB)
[#004] sha256:1cd7154417bc5afdeb6ac96b7be7c97272dc43593f17fb8a68e54f6366c758c1 - 0.01% (8.01 KB)
[#005] sha256:3c087caf51eaafe42d8b7a298a055a6e5a08d4e90fc0846df32a893766f7d2a9 - 0.0% (161 Bytes)
[#006] sha256:19e6820a9790f8c7998631aeb522d0c55a0ed16807d47e623ccfa01c758a7fa8 - 0.0% (194 Bytes)
[#007] sha256:d1d64bb0cd8dc15073f28c3ac46296d6484c93e63510f90ac1dd76c2b9f3d809 - 0.01% (4.16 KB)
/bin/sh -c #(nop) ADD file:a59a30c2fd43c9f3b820751a6f5a54688c14440a1ddace1ab255475f46e6ba2d in /
2020-04-23 17:50:58 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 06:45:36 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-04-24 06:45:36 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 06:45:37 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 06:45:37 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2020-04-24 06:45:37 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.2
2020-04-24 06:45:38 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de
2020-04-24 06:48:58 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 linux-headers llvm9-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 .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-04-24 06:49:00 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 06:49:01 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 06:49:01 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 06:49:02 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 06:49:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 06:49:02 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-04-24 06:49:02 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 06:49:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 06:49:03 UTC/bin/sh -c #(nop) CMD ["postgres"]