Namespace
library
Image / Tag
postgres:9.4.26-alpine
Content Digest
sha256:59208fe6e5a2d2868fcc935b4a034192b5bf868e144e4a117826f3782282bd8e
Details
Created

2020-02-14 18:15:53 UTC

Size

14.1 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.4

PG_SHA256

f5c014fc4a5c94e8cf11314cbadcade4d84213cfcc82081c9123e1b8847a20b9

PG_VERSION

9.4.26


Layers

[#000] sha256:f024b1263dc58db07a458b73ae1a2dca02ca55bef1ccd1fa3fd50656551fadf2 - 18.96% (2.68 MB)

[#001] sha256:3b2cb8463eb063fd24e3d29bd4ca5b9ba1590717acda7415cb45da3e7560f0dd - 0.01% (1.22 KB)

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

[#003] sha256:45afb6ddbe4b9912756eaf2dad9cd65e33217c36a32f7d81a404d9b5053b1764 - 80.96% (11.4 MB)

[#004] sha256:6b82619daf4ef86099744fa497b159e35cd1bbe90707cffc1ce8213a1eba5128 - 0.05% (6.53 KB)

[#005] sha256:582ab54d3312003062a6bbfa8154fbee7b2d1004c39b843e1145812fce2da6b2 - 0.0% (129 Bytes)

[#006] sha256:440e8dbc06d5655a234ad9f832e5b466d60763c45a5a037e55968c5f15d01d9b - 0.0% (163 Bytes)

[#007] sha256:4b578348b717ef396b6bde9bbd2c31cf460bc94f87125c90d9a127b7a6afc7ab - 0.03% (4.08 KB)

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


History
2020-01-18 01:38:44 UTC

/bin/sh -c #(nop) ADD file:381b617b92fe699ad4ef4f30e0d9599f89e43e252883348c420ebe2a0cccbd63 in /

2020-01-18 01:38:45 UTC

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

2020-01-30 02:38:44 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 02:38:44 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2020-01-30 02:38:45 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2020-01-30 03:03:34 UTC

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

2020-02-14 18:12:39 UTC

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

2020-02-14 18:12:39 UTC

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

2020-02-14 18:15:48 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 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 .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-02-14 18:15:49 UTC

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

2020-02-14 18:15:50 UTC

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

2020-02-14 18:15:50 UTC

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

2020-02-14 18:15:51 UTC

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

2020-02-14 18:15:51 UTC

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

2020-02-14 18:15:51 UTC

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

2020-02-14 18:15:52 UTC

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

2020-02-14 18:15:52 UTC

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

2020-02-14 18:15:53 UTC

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

2020-02-14 18:15:53 UTC

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

Details
Created

2020-02-14 17:51:06 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.4

PG_SHA256

f5c014fc4a5c94e8cf11314cbadcade4d84213cfcc82081c9123e1b8847a20b9

PG_VERSION

9.4.26


Layers

[#000] sha256:c9b1b535fdd91a9855fb7f82348177e5f019329a58c53c47272962dd60f71fc9 - 19.71% (2.67 MB)

[#001] sha256:d1030c456d04636112fa347ddc5296036cddf70c8085be2e3f3fb481898f18fe - 0.01% (1.22 KB)

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

[#003] sha256:99f291b75b089f8f4383b3a33d30b174c28113d03c2f82da727ef23c23214a11 - 80.2% (10.9 MB)

[#004] sha256:91c2069df24fd69e35e182f8ed3379021cdeafc4526463e4fd23393df5b8ba72 - 0.05% (6.53 KB)

[#005] sha256:79992482bbbd0d0c4d983c63ff3b8544fa31f4668d5fbcae3f3840b6a86e0202 - 0.0% (128 Bytes)

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

[#007] sha256:1fabc686de13d89b05033ebdf5c00d723a35055d7dbf82f84ac0bd7c4d4c8d97 - 0.03% (4.09 KB)

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


History
2020-01-18 01:19:37 UTC

/bin/sh -c #(nop) ADD file:e69d441d729412d24675dcd33e04580885df99981cec43de8c9b24015313ff8e in /

2020-01-18 01:19:37 UTC

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

2020-01-30 03:19:59 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 03:19:59 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2020-01-30 03:20:00 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2020-01-30 03:40:01 UTC

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

2020-02-14 17:47:27 UTC

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

2020-02-14 17:47:28 UTC

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

2020-02-14 17:51:01 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 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 .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-02-14 17:51:02 UTC

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

2020-02-14 17:51:03 UTC

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

2020-02-14 17:51:03 UTC

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

2020-02-14 17:51:04 UTC

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

2020-02-14 17:51:04 UTC

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

2020-02-14 17:51:05 UTC

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

2020-02-14 17:51:05 UTC

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

2020-02-14 17:51:06 UTC

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

2020-02-14 17:51:06 UTC

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

2020-02-14 17:51:06 UTC

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

Details
Created

2020-02-14 18:11:42 UTC

Size

13 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.4

PG_SHA256

f5c014fc4a5c94e8cf11314cbadcade4d84213cfcc82081c9123e1b8847a20b9

PG_VERSION

9.4.26


Layers

[#000] sha256:832e07764099264ef96e50a1e5e41c52d6b0809bd054e29508a6878aa59d156d - 19.19% (2.5 MB)

[#001] sha256:3ab27e2422be886bc0a338b0e0c20b8e2beea15b880defbac81f75c04495d0c2 - 0.01% (1.24 KB)

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

[#003] sha256:70278e04836a2b4c51dc64e21a7f6c77ea7364cb354b113f5737829911ad28da - 80.72% (10.5 MB)

[#004] sha256:0ce242f208e50c5d4cec5a7cd6b8e3abbc51780b5e5ff47fb699a9a06ddba66e - 0.05% (6.53 KB)

[#005] sha256:830fd1c8d57dc09f515ff53405f61364320ba364525953e73a85e546fb3757b3 - 0.0% (160 Bytes)

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

[#007] sha256:95bd248540bb751bfdbd5546519b769bf599ed812033888969e66fcd616b7105 - 0.03% (4.08 KB)

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


History
2020-01-18 01:53:16 UTC

/bin/sh -c #(nop) ADD file:a1906f14a4e217a498b550f86a3d17c9012c02a6df0668043b63848c8fa44b9b in /

2020-01-18 01:53:17 UTC

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

2020-01-30 02:49:35 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 02:49:36 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2020-01-30 02:49:37 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2020-01-30 03:08:48 UTC

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

2020-02-14 18:08:50 UTC

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

2020-02-14 18:08:50 UTC

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

2020-02-14 18:11:21 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 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 .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-02-14 18:11:25 UTC

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

2020-02-14 18:11:28 UTC

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

2020-02-14 18:11:30 UTC

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

2020-02-14 18:11:32 UTC

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

2020-02-14 18:11:34 UTC

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

2020-02-14 18:11:35 UTC

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

2020-02-14 18:11:39 UTC

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

2020-02-14 18:11:40 UTC

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

2020-02-14 18:11:41 UTC

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

2020-02-14 18:11:42 UTC

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

Details
Created

2020-02-14 19:10:52 UTC

Size

12.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.4

PG_SHA256

f5c014fc4a5c94e8cf11314cbadcade4d84213cfcc82081c9123e1b8847a20b9

PG_VERSION

9.4.26


Layers

[#000] sha256:3a2c5e3c37b2e3d749405512ef3793aa45a2f5c11615d9e9efa80179262cdf27 - 18.84% (2.31 MB)

[#001] sha256:572777a7d0992ea05b14f2ba3230ce906c753dd21eb73ac2b6018551250312db - 0.01% (1.24 KB)

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

[#003] sha256:13851142afb9e7466c68f2ad1352923bb16859fc07c2dc20c2aa4708bbf0c1e1 - 81.07% (9.93 MB)

[#004] sha256:7c2c9dde93f7cbee411ed4ff093cbcb537d2abf91aba4c695bff0a82be1d5122 - 0.05% (6.53 KB)

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

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

[#007] sha256:56f893deea9ded8a561e46bc59a3324684c10556eed6eab004d59a10ff75a358 - 0.03% (4.08 KB)

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


History
2020-01-18 02:03:19 UTC

/bin/sh -c #(nop) ADD file:4c815f4461ff3b8d481f43d84eb2548cb1adbb3015d370cab86dd7f4d3d94279 in /

2020-01-18 02:03:22 UTC

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

2020-01-30 03:00:10 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 03:00:13 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2020-01-30 03:00:15 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2020-01-30 03:15:25 UTC

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

2020-02-14 19:08:43 UTC

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

2020-02-14 19:08:44 UTC

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

2020-02-14 19:10:38 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 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 .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-02-14 19:10:42 UTC

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

2020-02-14 19:10:44 UTC

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

2020-02-14 19:10:45 UTC

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

2020-02-14 19:10:47 UTC

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

2020-02-14 19:10:47 UTC

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

2020-02-14 19:10:48 UTC

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

2020-02-14 19:10:50 UTC

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

2020-02-14 19:10:51 UTC

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

2020-02-14 19:10:52 UTC

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

2020-02-14 19:10:52 UTC

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

Details
Created

2020-02-14 19:56:30 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.4

PG_SHA256

f5c014fc4a5c94e8cf11314cbadcade4d84213cfcc82081c9123e1b8847a20b9

PG_VERSION

9.4.26


Layers

[#000] sha256:8fa90b21c985a6fcfff966bdfbde81cdd088de0aa8af38110057f6ac408f4408 - 19.46% (2.6 MB)

[#001] sha256:9db837ff5778a13ace9e439e3bff33c317ecca84803a142a4ee4e05d2af54def - 0.01% (1.24 KB)

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

[#003] sha256:17d56c400d0092bdce23fa4ff22b1a7f6fe14805ddd5d260105920826438f6f2 - 80.45% (10.7 MB)

[#004] sha256:1c2e5940a3bea6db238a7b20988802c5b10320d18945c97f42422ccd033d206b - 0.05% (6.53 KB)

[#005] sha256:215a209e18ef68894c1602b95c60f355db7ea6945f234ac83f3b48525cb75077 - 0.0% (163 Bytes)

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

[#007] sha256:453febfe9235816abb275f15ce62fb2b7c3300897a3458a1cbc1eaf128d3ffa2 - 0.03% (4.08 KB)

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


History
2020-01-18 01:39:43 UTC

/bin/sh -c #(nop) ADD file:4109fa86dd80850e84c689ff9e6a3243e30ab1bbcc00c765969b3011bfbb43e1 in /

2020-01-18 01:39:43 UTC

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

2020-01-30 02:40:27 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 02:40:28 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2020-01-30 02:40:29 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2020-01-30 02:56:59 UTC

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

2020-02-14 19:54:11 UTC

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

2020-02-14 19:54:11 UTC

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

2020-02-14 19:56:18 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 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 .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-02-14 19:56:21 UTC

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

2020-02-14 19:56:23 UTC

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

2020-02-14 19:56:23 UTC

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

2020-02-14 19:56:25 UTC

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

2020-02-14 19:56:26 UTC

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

2020-02-14 19:56:26 UTC

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

2020-02-14 19:56:28 UTC

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

2020-02-14 19:56:29 UTC

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

2020-02-14 19:56:30 UTC

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

2020-02-14 19:56:30 UTC

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

Details
Created

2020-02-14 18:09:10 UTC

Size

14.4 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.4

PG_SHA256

f5c014fc4a5c94e8cf11314cbadcade4d84213cfcc82081c9123e1b8847a20b9

PG_VERSION

9.4.26


Layers

[#000] sha256:cd95c8a93e39dcaa0634a65d5b86a88bcd5c3092adb1f96504a7030faa165123 - 18.68% (2.69 MB)

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

[#002] sha256:7852af7c4759ead6b82b170b6d34d124532026b41ec5d7dc4ec99bd6705f633a - 0.0% (148 Bytes)

[#003] sha256:1c265a31167ebddfd793d5d0bdd81aa4cb20f6bc2ac1caac7e5090ae11fa562b - 81.23% (11.7 MB)

[#004] sha256:3065d8059a58d67bbabac266f43ccabbfc49f569b254bd7a2cd503f0bd4e55de - 0.04% (6.53 KB)

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

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

[#007] sha256:11271aeecb102ebdcde523536e71f7295d9976a9d74631c9e4ff0f50bd57c05d - 0.03% (4.08 KB)

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


History
2020-01-18 02:20:41 UTC

/bin/sh -c #(nop) ADD file:32ddb3d5255071cca51573ceee2464dd5a87c8d1cce514ae965b6e824d9ef24b in /

2020-01-18 02:20:45 UTC

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

2020-01-30 03:20:01 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 03:20:03 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2020-01-30 03:20:07 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2020-01-30 03:48:08 UTC

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

2020-02-14 18:05:50 UTC

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

2020-02-14 18:05:56 UTC

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

2020-02-14 18:08: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 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 .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-02-14 18:08:33 UTC

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

2020-02-14 18:08:40 UTC

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

2020-02-14 18:08:44 UTC

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

2020-02-14 18:08:50 UTC

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

2020-02-14 18:08:53 UTC

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

2020-02-14 18:08:55 UTC

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

2020-02-14 18:09:04 UTC

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

2020-02-14 18:09:06 UTC

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

2020-02-14 18:09:08 UTC

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

2020-02-14 18:09:10 UTC

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

Details
Created

2020-02-14 19:03:46 UTC

Size

13.2 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.4

PG_SHA256

f5c014fc4a5c94e8cf11314cbadcade4d84213cfcc82081c9123e1b8847a20b9

PG_VERSION

9.4.26


Layers

[#000] sha256:176bad61a3a435da03ec603d2bd8f7a69286d92f21f447b17f21f0bc4e085bde - 18.66% (2.46 MB)

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

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

[#003] sha256:703dfab6ca9f411c696dc3f412ab5228b8d9ee67d035532bd11b7198f67fa03a - 81.24% (10.7 MB)

[#004] sha256:afeecc9c0fc4e2127cb99f4b69ccd237efbb7c97170c6861b043012487c8a702 - 0.05% (6.53 KB)

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

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

[#007] sha256:614ba10e91b4589d207d6e5117bc5d1f51f5a172d41e7d2a2876059aade97a9c - 0.03% (4.09 KB)

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


History
2020-01-18 01:41:33 UTC

/bin/sh -c #(nop) ADD file:a6f8b7d4ba199527053ef1ac710b5e318135cb6903cb9ad6fae4fe42e6ad0bf7 in /

2020-01-18 01:41:33 UTC

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

2020-01-30 02:48:55 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 02:48:56 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2020-01-30 02:48:56 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2020-01-30 03:04:57 UTC

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

2020-02-14 18:59:30 UTC

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

2020-02-14 18:59:30 UTC

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

2020-02-14 19:03:34 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 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 .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-02-14 19:03:37 UTC

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

2020-02-14 19:03:39 UTC

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

2020-02-14 19:03:40 UTC

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

2020-02-14 19:03:42 UTC

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

2020-02-14 19:03:42 UTC

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

2020-02-14 19:03:43 UTC

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

2020-02-14 19:03:44 UTC

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

2020-02-14 19:03:45 UTC

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

2020-02-14 19:03:46 UTC

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

2020-02-14 19:03:46 UTC

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