Namespace
library
Image / Tag
postgres:9.6.21-alpine
Content Digest
sha256:9169becabc33ea452d14b085a1b073f9e855232ee7a3ce6492dfaf16fe37cd88
Details
Created

2021-04-15 06:32:24 UTC

Size

14.5 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.6

PG_SHA256

930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

PG_VERSION

9.6.21


Layers

[#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:b63f3879a68f933170cb40159096fb75e5ace672128c5fdad23fe15c2f05991b - 81.35% (11.8 MB)

[#004] sha256:b2a04c9f754bbbe28e6c1cb936dedf42c4679f7caf00782c2ae1de08ed62a80f - 0.05% (6.99 KB)

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

[#006] sha256:5557fcf45b90f46d7d005aaa92a4e3073fc36135f53e8239219405aaa86f4e7c - 0.0% (194 Bytes)

[#007] sha256:dc72b505e3eb1b046fb0b7c58d9345ce37aa46d817bd55d00abc6f33c69b291a - 0.03% (4.3 KB)

[#008] sha256:fc2a33e5bcaa36c583781d59bd7b4f4e978a61cb6a4062d9bf4fafeae3c0fb34 - 0.0% (121 Bytes)


History
2021-04-14 18:38:29 UTC

/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-04-15 06:29:18 UTC

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

2021-04-15 06:29:19 UTC

/bin/sh -c #(nop) ENV PG_SHA256=930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

2021-04-15 06:32:20 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-04-15 06:32:21 UTC

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

2021-04-15 06:32: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 06:32:21 UTC

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

2021-04-15 06:32:22 UTC

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

2021-04-15 06:32:22 UTC

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

2021-04-15 06:32:23 UTC

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

2021-04-15 06:32:23 UTC

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

2021-04-15 06:32:24 UTC

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

2021-04-15 06:32:24 UTC

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

2021-04-15 06:32:24 UTC

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

2021-04-15 06:32:24 UTC

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

Details
Created

2021-04-15 04:15:29 UTC

Size

13.9 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.6

PG_SHA256

930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

PG_VERSION

9.6.21


Layers

[#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:a22058ee3b26e2590c358ccfe3ebbe498165524f61d7258e4d03a99dd56b1795 - 80.58% (11.2 MB)

[#004] sha256:8ed63bd9a265a0d38fecb9d1ae10c573e5bb537626bab14ef8cfc1392dd15a1d - 0.05% (6.99 KB)

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

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

[#007] sha256:97dbb7181aa99aa941fc84db0e06fc6d13133369f18b41047e50a909e36bd8b1 - 0.03% (4.3 KB)

[#008] sha256:dc4ac968e21898472062eea6b1d595f3239554e1fc09c8836a63fcbb1c0f3724 - 0.0% (121 Bytes)


History
2021-04-14 19:19:39 UTC

/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-04-15 04:12:22 UTC

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

2021-04-15 04:12:23 UTC

/bin/sh -c #(nop) ENV PG_SHA256=930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

2021-04-15 04:15:23 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-04-15 04:15:24 UTC

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

2021-04-15 04:15:25 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:15:26 UTC

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

2021-04-15 04:15:27 UTC

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

2021-04-15 04:15:27 UTC

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

2021-04-15 04:15:27 UTC

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

2021-04-15 04:15:28 UTC

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

2021-04-15 04:15:28 UTC

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

2021-04-15 04:15:29 UTC

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

2021-04-15 04:15:29 UTC

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

2021-04-15 04:15:29 UTC

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

Details
Created

2021-04-15 03:06:52 UTC

Size

13.3 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.6

PG_SHA256

930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

PG_VERSION

9.6.21


Layers

[#000] sha256:740c950346cf39c85b52576998695c9b909c24a58a8bb1b64cce91fda3ef1d3a - 18.82% (2.5 MB)

[#001] sha256:eb015ae0de556d839b1cce178f0d7aac974efbf85f07dae41e1cb18f4704b7f2 - 0.01% (1.25 KB)

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

[#003] sha256:458a326e4774321e126b88c343a9f9ac81cce245548a6288cfb6713973218e1f - 81.08% (10.8 MB)

[#004] sha256:9b6af1265f5aa2c1d21d3b426aed99a2d8e5b58b15a5a5f911c388c49fecd22e - 0.05% (6.99 KB)

[#005] sha256:980432ebe8387ffc2f5644f92775327f4b250aab9a93bd2594bfa4e0fb0a4b8e - 0.0% (161 Bytes)

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

[#007] sha256:d13a75d6b36686aafd0a991cb860626c676394fcc921b0dc07862ec2e27ed030 - 0.03% (4.3 KB)

[#008] sha256:e0b0d4ed9f74011041bc9f645a8bffcb3f35259f93e9972e589c488cbd69768c - 0.0% (121 Bytes)


History
2021-04-14 18:49:39 UTC

/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 03:03:54 UTC

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

2021-04-15 03:03:56 UTC

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

2021-04-15 03:03:57 UTC

/bin/sh -c #(nop) ENV PG_SHA256=930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

2021-04-15 03:06:31 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-04-15 03:06:34 UTC

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

2021-04-15 03:06:37 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:06:37 UTC

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

2021-04-15 03:06:40 UTC

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

2021-04-15 03:06:41 UTC

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

2021-04-15 03:06:42 UTC

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

2021-04-15 03:06:45 UTC

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

2021-04-15 03:06:46 UTC

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

2021-04-15 03:06:48 UTC

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

2021-04-15 03:06:49 UTC

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

2021-04-15 03:06:52 UTC

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

Details
Created

2021-04-15 04:05:59 UTC

Size

12.5 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.6

PG_SHA256

930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

PG_VERSION

9.6.21


Layers

[#000] sha256:e160e00eb35d5bc2373770873fbc9c8f5706045b0b06bfd1c364fcf69f02e9fe - 18.53% (2.31 MB)

[#001] sha256:d289031c7f8e86cc05ec575d7c122bc6d615e827ae76e96bca00fd9b0bba9dfb - 0.01% (1.25 KB)

[#002] sha256:65b79752b7fbad651a271862e12e829d3ce7258cfa9386e5945f7c4232008d57 - 0.0% (148 Bytes)

[#003] sha256:8f95030768117145741b1fb97d693af217044cff3acfcf8388b81537d5bc9459 - 81.36% (10.1 MB)

[#004] sha256:0c292532581cfd8380682f374d7a70680e1ed868bf3bb475b853e71afbe79371 - 0.05% (6.99 KB)

[#005] sha256:1187ef3a466f26a8a460f37a8586b86929d0040c741cee28f84894f58b5c8cba - 0.0% (161 Bytes)

[#006] sha256:bdf8eb92d43cfe5c0bd42bbb9482d99d642290531600deabb576ae532ea6f3e2 - 0.0% (194 Bytes)

[#007] sha256:2e72014c3aaef9f094404b7745d3f716bbd3daf37e22637a0fb6413cfab72598 - 0.03% (4.3 KB)

[#008] sha256:c7d1f6bf762dc343470d939f795853efc271d3540dcc29cae4c033dddeb6c84b - 0.0% (121 Bytes)


History
2021-04-14 18:57:39 UTC

/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 04:03:12 UTC

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

2021-04-15 04:03:13 UTC

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

2021-04-15 04:03:15 UTC

/bin/sh -c #(nop) ENV PG_SHA256=930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

2021-04-15 04:05:36 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-04-15 04:05:40 UTC

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

2021-04-15 04:05:43 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:05:44 UTC

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

2021-04-15 04:05:47 UTC

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

2021-04-15 04:05:48 UTC

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

2021-04-15 04:05:50 UTC

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

2021-04-15 04:05:54 UTC

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

2021-04-15 04:05:55 UTC

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

2021-04-15 04:05:57 UTC

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

2021-04-15 04:05:58 UTC

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

2021-04-15 04:05:59 UTC

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

Details
Created

2021-04-15 06:43:28 UTC

Size

13.6 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.6

PG_SHA256

930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

PG_VERSION

9.6.21


Layers

[#000] sha256:595b0fe564bb9444ebfe78288079a01ee6d7f666544028d5e96ba610f909ee43 - 19.02% (2.59 MB)

[#001] sha256:343d254f5bda6431d4dc0605dac9afc2ec2451bb699bf4fb33ba376136dd6667 - 0.01% (1.25 KB)

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

[#003] sha256:4264a6762f59d8d66d2535fa5fb30e080174ce1537b82d691efbd102b84244a7 - 80.89% (11 MB)

[#004] sha256:fab37df8e35b57967edd99d53fbe2d897bade8a739a1a1bd0a35ae98ca690ffc - 0.05% (6.99 KB)

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

[#006] sha256:f5fd1e71c0713b1d1502d487c26c1aded907d271f18291a50ac5855ad06326ea - 0.0% (194 Bytes)

[#007] sha256:59f24cca27693eb72d3ef581977c63bd7418b5e815f385fa8ecf47fef1ee89fe - 0.03% (4.3 KB)

[#008] sha256:78fb40386ab7ff6706e444cd9b2b64bdad9a98f3643a4d3057739f9945a22c46 - 0.0% (121 Bytes)


History
2021-04-14 18:42:37 UTC

/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:39:49 UTC

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

2021-04-15 06:39:50 UTC

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

2021-04-15 06:39:51 UTC

/bin/sh -c #(nop) ENV PG_SHA256=930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

2021-04-15 06:43: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 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-04-15 06:43:10 UTC

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

2021-04-15 06:43:14 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:43:15 UTC

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

2021-04-15 06:43:18 UTC

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

2021-04-15 06:43:19 UTC

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

2021-04-15 06:43:21 UTC

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

2021-04-15 06:43:24 UTC

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

2021-04-15 06:43:25 UTC

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

2021-04-15 06:43:26 UTC

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

2021-04-15 06:43:27 UTC

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

2021-04-15 06:43:28 UTC

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

Details
Created

2021-04-15 05:03:58 UTC

Size

14.8 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.6

PG_SHA256

930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

PG_VERSION

9.6.21


Layers

[#000] sha256:771d2590aa602a0d4a922e322f02b22cc9d193f8cd159d9d1a140cadf1f8b4d4 - 18.08% (2.68 MB)

[#001] sha256:85f26f1d1b4701765dc7858aba1bef999c1ba3b78d85ae321be21792492595da - 0.01% (1.25 KB)

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

[#003] sha256:2658170294bd3ad845bfcb15b5939f8335b4b864e03faf5eabab8ce3d5d663ca - 81.83% (12.1 MB)

[#004] sha256:9e4298100918ad90b74136486bcf5363a9aa7e8717b8d2b5d3cb2fa85855bdb6 - 0.05% (6.99 KB)

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

[#006] sha256:07edbd518157a29fd513986ca46e522efbb8c0f69532757952a9e3a5c796980a - 0.0% (194 Bytes)

[#007] sha256:4a28a899a50dfd40f576e2fe5c7fc9a32426bfe3afd363e93895935a343b1e5b - 0.03% (4.3 KB)

[#008] sha256:3baee78b816fc94e449dc6d0ff84479a9c437173ee16d2f0125dfd3dc007b0e0 - 0.0% (120 Bytes)


History
2021-04-14 19:30:57 UTC

/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:59:55 UTC

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

2021-04-15 04:59:58 UTC

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

2021-04-15 05:00:01 UTC

/bin/sh -c #(nop) ENV PG_SHA256=930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

2021-04-15 05:02:41 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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-04-15 05:02:51 UTC

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

2021-04-15 05:03:02 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2021-04-15 05:03:06 UTC

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

2021-04-15 05:03:17 UTC

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

2021-04-15 05:03:23 UTC

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

2021-04-15 05:03:26 UTC

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

2021-04-15 05:03:35 UTC

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

2021-04-15 05:03:39 UTC

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

2021-04-15 05:03:44 UTC

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

2021-04-15 05:03:51 UTC

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

2021-04-15 05:03:58 UTC

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

Details
Created

2021-04-15 02:52:39 UTC

Size

13.6 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.6

PG_SHA256

930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

PG_VERSION

9.6.21


Layers

[#000] sha256:afadee6ad6a38d3172beeeca818219604c782efbe93201ef4d39512f289b05ae - 18.3% (2.48 MB)

[#001] sha256:f539beccb9c12dbbd5eb5238188d7421b0e766e3e536f47e5a25dce4187b138f - 0.01% (1.25 KB)

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

[#003] sha256:74278cf029449b55037da3fef8987f1e53a653afbff88ea4dca29943304076bf - 81.61% (11.1 MB)

[#004] sha256:cc0b9a863e98c14918ccb64a93d6eb936ee2116d7017d434fd65f435b6109b2a - 0.05% (6.99 KB)

[#005] sha256:422d515561d977cb6df6dac9d2cfe33e0f682d2d84f4cf8f7b60205c6b06ba2b - 0.0% (161 Bytes)

[#006] sha256:baa3a8bfc6f8dab3f1bb66d23de27b5a5d9d3ef979497f3c5a1fdabf3d759423 - 0.0% (193 Bytes)

[#007] sha256:f845d14345e6b0c70787cc711070cf41b2296afb4e4fa6c81b317d5ca73b9f68 - 0.03% (4.3 KB)

[#008] sha256:8645cfd8aebdc3d232b7ce2fe0b05dc2aba2aad37de805cd19af7671c6bed262 - 0.0% (121 Bytes)


History
2021-04-14 18:41:35 UTC

/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:50:28 UTC

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

2021-04-15 02:50:29 UTC

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

2021-04-15 02:50:29 UTC

/bin/sh -c #(nop) ENV PG_SHA256=930feaef28885c97ec40c26ab6221903751eeb625de92b22602706d7d47d1634

2021-04-15 02:52:34 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-04-15 02:52:35 UTC

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

2021-04-15 02:52:36 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:52:36 UTC

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

2021-04-15 02:52:37 UTC

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

2021-04-15 02:52:37 UTC

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

2021-04-15 02:52:37 UTC

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

2021-04-15 02:52:38 UTC

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

2021-04-15 02:52:38 UTC

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

2021-04-15 02:52:38 UTC

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

2021-04-15 02:52:39 UTC

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

2021-04-15 02:52:39 UTC

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