docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:9.6.22-alpine3.13
sha256:c4f872b8eafeededb104e102ad6d238fad6f0a8d2c7d18394d62e7c12a25a65d
2021-05-14 20:27:34 UTC
14.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:31b7e7ccca9e17fd08b39c9a4ffd3ded380b62816c489d6c3758c9bb5a632430 - 18.56% (2.69 MB)
[#001] sha256:f5d598db5bdb56bc14bf75398a61d3a0d982e72260a1108a46665627a73212d0 - 0.01% (1.25 KB)
[#002] sha256:dc60ee1989b27c3c75961dc0e2a874021e7626fcaf8c4e289d05df49a78c40cd - 0.0% (149 Bytes)
[#003] sha256:cde3a40b8a061ba3e9749dea181e4f839593ead2cd387ce26258bb606e8d2e06 - 81.35% (11.8 MB)
[#004] sha256:2cc025483ae5fa4095e5dc09c0e14148a98b3adab2ebe5bebf40a0b63e1446b9 - 0.05% (7 KB)
[#005] sha256:048a441a2fb9380bc5dc2aef2109568c82e70805fdbbcd8daba54a88dfe79583 - 0.0% (161 Bytes)
[#006] sha256:f1e423bb266a8f1fb1029b062704351dbd656175c3b791d1ffefa7d76045aba1 - 0.0% (194 Bytes)
[#007] sha256:0d0cca3a8c25046825cac8ba69043fe6ec51df6129fb3e551fb5548193ab3f29 - 0.03% (4.3 KB)
[#008] sha256:4e9a74d30132bc58b418c4e1a565e7d95dfc3a7c4864167d91d863bbf1580f18 - 0.0% (121 Bytes)
/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:29:18 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-05-14 20:24:09 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-05-14 20:24:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-05-14 20:27:28 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-05-14 20:27:29 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-05-14 20:27:30 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-05-14 20:27:30 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-05-14 20:27:31 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-05-14 20:27:31 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-05-14 20:27:32 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-05-14 20:27:33 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-05-14 20:27:33 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-05-14 20:27:33 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-05-14 20:27:33 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-05-14 20:27:34 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:60d950d0004d074b3428080181976e3450ab885e7d23f673473242c7e6d3d970
2021-05-14 20:09:43 UTC
13.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:540db60ca9383eac9e418f78490994d0af424aab7bf6d0e47ac8ed4e2e9bcbba - 19.33% (2.68 MB)
[#001] sha256:a3cb73039552ea36b22e7ea1fabf738b87f83b2c9347901ce77b79c790389bb7 - 0.01% (1.25 KB)
[#002] sha256:39855706e49a3eeebf4c28a2ff3d706c5cdbe7bb1726d272188f08e91a46bfb8 - 0.0% (149 Bytes)
[#003] sha256:caacf3a6c4e30b29f55a45ebab958805b2742fa2692a5c3b9e744ad7044fffde - 80.58% (11.2 MB)
[#004] sha256:a43e10552cb913a2435fb3a5f2c86756bb9de36d3770a19d370aeb0a56d3d399 - 0.05% (7 KB)
[#005] sha256:5ad27a20815a176dfc2b7070cf2cd703d14a1fc96b4ff24d129fb2a219af4e0f - 0.0% (161 Bytes)
[#006] sha256:dabb4cf8dc15cd435b4fc897977218f65e44a163c4da61e4453ef359de0701b5 - 0.0% (194 Bytes)
[#007] sha256:817e5c24ebbc37820e6b901b48212e0c499c49c73ad71b54b97d90c9cbdf0657 - 0.03% (4.3 KB)
[#008] sha256:71f8cfbd522dcb11f4ff846acdb10bf2e7beae0173475f8ad5e2b37d627d9e6a - 0.0% (121 Bytes)
/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 04:12:22 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-05-14 20:04:08 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-05-14 20:04:08 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-05-14 20:09:32 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-05-14 20:09:34 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-05-14 20:09:37 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-05-14 20:09:37 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-05-14 20:09:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-05-14 20:09:40 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-05-14 20:09:40 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-05-14 20:09:42 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-05-14 20:09:43 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-05-14 20:09:43 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-05-14 20:09:43 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-05-14 20:09:43 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:622e3278963a2043ab663fe2aacdbc56575b616ae6fc2f306adb6339bdd9b0ce
2021-07-12 23:40:21 UTC
13.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:740c950346cf39c85b52576998695c9b909c24a58a8bb1b64cce91fda3ef1d3a - 18.3% (2.5 MB)
[#001] sha256:957b1aca16cb7c58365877da0bd1faee5e1ffb47a865ee837514aae66d5897d8 - 0.01% (1.25 KB)
[#002] sha256:83b82e52d6594d4fbeddc069e45000bf8a43379127bb1958a008ad747756e4cd - 0.0% (149 Bytes)
[#003] sha256:aa4f66dfa8453c4eb16cd4c00aa3ffda47e8e9311486d61b682d6a1194c89a08 - 81.6% (11.1 MB)
[#004] sha256:a7886b3a56a192d5307ef5ada4689ed0c4b4932c08b41aa6e9c8fcb5ba520472 - 0.05% (7 KB)
[#005] sha256:da8f1c0e14cc94d16ff7b5d62005a7922879aad22b08daa60f1daae8b4025ab9 - 0.0% (161 Bytes)
[#006] sha256:288e6057418a14f55afd7c692eda362d7066f55dd345be0e9b0f4ca6c58f4b11 - 0.0% (194 Bytes)
[#007] sha256:924d6945040d07576e3d0bff67c0e829ef9603562bfe93642731701f1fdd435c - 0.03% (4.3 KB)
[#008] sha256:e135595c81523d5b1d845f1cb2fe6966a5b547961a9d1f691eb877652fb161e4 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:4479f0a51530e039edf231d87201896dcff908aa542a613cdccb015f93dda8a3 in /
2021-06-15 22:57:34 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-07-12 23:17:05 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-07-12 23:17:06 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-07-12 23:17:07 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-07-12 23:36:51 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-07-12 23:36:52 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-07-12 23:36:52 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-07-12 23:40:08 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-07-12 23:40:10 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-07-12 23:40:13 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-07-12 23:40:13 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-07-12 23:40:15 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-07-12 23:40:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-07-12 23:40:16 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-07-12 23:40:19 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-07-12 23:40:19 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-07-12 23:40:20 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-07-12 23:40:20 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-07-12 23:40:21 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:9cc47e5057ad48607c268c48ba894cc5ed63ba3714f8258fa0afedd89bc6582e
2021-07-13 03:59:45 UTC
12.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:e160e00eb35d5bc2373770873fbc9c8f5706045b0b06bfd1c364fcf69f02e9fe - 18.03% (2.31 MB)
[#001] sha256:d51f2d62e16bf99158d4928b36e12942b1611cb524d036d435226ca9aae3d33c - 0.01% (1.25 KB)
[#002] sha256:845e792a419cdf6c2e46cf26684755520b868be8161037bdb9cd8bc8951c33f0 - 0.0% (149 Bytes)
[#003] sha256:3d7445d8d6a02d8257cfde1a7e1f8c62484793f933d4c7d6184e6b9743ba0724 - 81.87% (10.5 MB)
[#004] sha256:97d7a65df278578000a122acb6af21ed1e6cd8104e9889c7fdaaca410dd06154 - 0.05% (7 KB)
[#005] sha256:ebcc5c26cf14d3fef8d03e45d6c6df59bc54ef23da1cdac3af8ea9679412b1f4 - 0.0% (162 Bytes)
[#006] sha256:718ca6a23b120f100864fab1eba3864e721d7efc3b6871bd6b87f631ee5d4dac - 0.0% (194 Bytes)
[#007] sha256:421f554ebfdcada14bdb7cd40356995b436376698058754740d212f743994b66 - 0.03% (4.3 KB)
[#008] sha256:67484607deed9a238a08dbe32d33e07ba66d4602581bb7948617536f683cd21a - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:028c5b473d862250586e174c5dd19b37f8fc3bffbc02d888e72df30f32fd6129 in /
2021-06-15 23:15:16 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-07-13 03:37:18 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-07-13 03:37:18 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-07-13 03:37:20 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-07-13 03:56:19 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-07-13 03:56:19 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-07-13 03:56:20 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-07-13 03:59:35 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-07-13 03:59:37 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-07-13 03:59:39 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-07-13 03:59:39 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-07-13 03:59:41 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-07-13 03:59:41 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-07-13 03:59:42 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-07-13 03:59:44 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-07-13 03:59:44 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-07-13 03:59:44 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-07-13 03:59:45 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-07-13 03:59:45 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:45a4c842b66ae6115163fec3eee6f6965a12dd9d1b37be7e25320d803153e13f
2021-06-16 09:24:45 UTC
14 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:595b0fe564bb9444ebfe78288079a01ee6d7f666544028d5e96ba610f909ee43 - 18.49% (2.59 MB)
[#001] sha256:f371db7316b44874c3c018d3dbc2dacb013ac75a8807c03dcb87219ef26fd1e3 - 0.01% (1.25 KB)
[#002] sha256:f098f183ff9fed325c5e1fbbf197648d3666d7d79d33dd7a33a076862ec5b222 - 0.0% (149 Bytes)
[#003] sha256:b863b421c9bebc8d4bfb3ffe964397bdb827aaf8cd909c64c50fd91163ca0356 - 81.41% (11.4 MB)
[#004] sha256:55179377c183b72c400f1893061173453c4cb9b8b54c686264a691a808ad3865 - 0.05% (7 KB)
[#005] sha256:adefb8b37f08e6db52212de6a3731cc9ded4f0231321147a90497fa98b254cc0 - 0.0% (163 Bytes)
[#006] sha256:dbe3b4397e1f9522a74a2b559d37f8aca6f433fac20193445a8d898a6cd05990 - 0.0% (195 Bytes)
[#007] sha256:141933f20ce990e46478a4cc87c30c0ec3bc845ec30d3294ccca089773d55427 - 0.03% (4.3 KB)
[#008] sha256:510732c44a3ad4430931a40277e8f578ed6520546caed591d48844505ede43e7 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:ca9d8b5d1cc2f2186983fc6b9507da6ada5eb92f2b518c06af1128d5396c6f34 in /
2021-06-15 21:45:04 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-06-16 08:34:51 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-06-16 08:34:51 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-06-16 08:34:52 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-06-16 09:22:00 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-06-16 09:22:00 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-06-16 09:22:00 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-06-16 09:24:40 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-06-16 09:24:41 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-06-16 09:24:42 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-06-16 09:24:42 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-06-16 09:24:43 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-06-16 09:24:43 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-06-16 09:24:43 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-06-16 09:24:44 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-06-16 09:24:44 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-06-16 09:24:44 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-06-16 09:24:45 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-06-16 09:24:45 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:ba46a8135c8064b6553d617230b9fe9b2938eb701db5831ad5fa05c7c49e5595
2021-07-12 23:28:03 UTC
15.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:771d2590aa602a0d4a922e322f02b22cc9d193f8cd159d9d1a140cadf1f8b4d4 - 17.63% (2.68 MB)
[#001] sha256:dd6b1fdf45ba85b0eec3c08346703770c6fa8461aef0f1e5d92e80dee81f5ec3 - 0.01% (1.25 KB)
[#002] sha256:7d1656ac6a93b634ef3d1f29404d2402168b6548155466e1e19413124692abee - 0.0% (149 Bytes)
[#003] sha256:78cd30d3633378ebc7457c87edad17cf66a2799052034a582bb8f49bf604eb1a - 82.28% (12.5 MB)
[#004] sha256:5a91e085347a038c25733fc98c6b6af09f17d4514f358cfc6d4bf07ebfb0b078 - 0.04% (7 KB)
[#005] sha256:ee305b5c254c6302809d0b545ad61d21a8bde0988e557cec9084235f12d26a9d - 0.0% (161 Bytes)
[#006] sha256:160aefbeadccb5347570df13a8c6205fcc0967d9a039ad3c4f8cf866025fded7 - 0.0% (194 Bytes)
[#007] sha256:ef2915a029015078ee6ef0d58a829890ec451a70c481da586bfd67127be138d2 - 0.03% (4.3 KB)
[#008] sha256:e5905e1b12abfa9b98f58c55a97d81bfabc1e79186653317fda91eb8c793af36 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:52162c4413e3597dad4ccb790c379b67ef40d50c0d0659e8b6c65d833886b3af in /
2021-04-14 19:31:02 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-07-12 22:58:30 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-07-12 22:58:33 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-07-12 22:58:44 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-07-12 23:23:35 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-07-12 23:23:43 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-07-12 23:23:50 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-07-12 23:26:33 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-07-12 23:26:50 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-07-12 23:27:01 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-07-12 23:27:05 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-07-12 23:27:18 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-07-12 23:27:26 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-07-12 23:27:31 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-07-12 23:27:46 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-07-12 23:27:51 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-07-12 23:27:55 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-07-12 23:27:58 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-07-12 23:28:03 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:94fbf3beb45d9db4fbb10bddaf8f254bcaa99e8b8fb8943b1e567d284cd98288
2021-07-13 00:43:36 UTC
13.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:afadee6ad6a38d3172beeeca818219604c782efbe93201ef4d39512f289b05ae - 17.8% (2.48 MB)
[#001] sha256:68fdd2776568e1159ee997287cceca0dd324bb559ef0509f32a74925763e09e1 - 0.01% (1.25 KB)
[#002] sha256:611359463d48c1036be3e5dcedbab576bc0a6c53d504d5d41010406c7854baab - 0.0% (149 Bytes)
[#003] sha256:abf8b26379df16616a893658848ed1297bbaf5d3bec82ad31c8704422bcc216a - 82.11% (11.5 MB)
[#004] sha256:c81c694eb7c7265305170af10909acdac6479aeb14501c021084d42f22e47833 - 0.05% (6.99 KB)
[#005] sha256:e45c6fbdc34d908dd9a7026da996d3902bc2f7dab7f7218cad07d78a0eb17ce4 - 0.0% (162 Bytes)
[#006] sha256:1250175f89a3f4fa0a0286802fe1a93a725b8d52f14d0cfa47da6ef2ea5ec1f2 - 0.0% (193 Bytes)
[#007] sha256:724a1a253e50639ed86738d5b8a6d7b21c690fa4a693fe8f0f6732ad62c8402e - 0.03% (4.3 KB)
[#008] sha256:7db10f9030d070fdc580195047abd9634bf13d405f35d7b4eda58438de2c65f4 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:c715fef757fe2b022ae1bbff71dbc58bddf5a858deb0aac5a6fbcf10d5f3111c in /
2021-04-14 18:41:36 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-07-13 00:11: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-07-13 00:11:27 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-07-13 00:11:29 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-07-13 00:39:28 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-07-13 00:39:29 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-07-13 00:39:29 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-07-13 00:43:24 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2021-07-13 00:43:27 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-07-13 00:43:29 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-07-13 00:43:30 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-07-13 00:43:31 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-07-13 00:43:32 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-07-13 00:43:32 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-07-13 00:43:34 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-07-13 00:43:34 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-07-13 00:43:35 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-07-13 00:43:35 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-07-13 00:43:36 UTC/bin/sh -c #(nop) CMD ["postgres"]