Namespace
library
Image / Tag
postgres:10.11-alpine
Content Digest
sha256:6f9e62f9d71757088980ec8e9828cfc912700b9b22936df3f8660d2691990fbf
Details
Created

2020-01-30 02:56:02 UTC

Size

27.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

10

PG_SHA256

0d5d14ff6b075655f4421038fbde3a5d7b418c26a249a187a4175600d7aecc09

PG_VERSION

10.11


Layers

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

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

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

[#003] sha256:880fdc15bbb701b95a163133d7302a0d65415afccfc1e5eb54379e3dbbd9101b - 90.32% (25.1 MB)

[#004] sha256:d34c3643c6fc34720c5af29f5a32d9b7454cabeb44b290efce9ad95ae6d1c824 - 0.03% (7.18 KB)

[#005] sha256:66d138897f98d7d67bb2ca0a5e896d23680b7c566eaec081ed5af8c8a82e9cf7 - 0.0% (129 Bytes)

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

[#007] sha256:6575c474405af6550c05c3742fa327adb43a7ab4ccea0484223baef6086f7b96 - 0.01% (3.75 KB)

[#008] sha256:e236b27b324830fac87dd9fa9b7d9023162f50b9822c38987452037615d7be52 - 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 02:52:09 UTC

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

2020-01-30 02:52:09 UTC

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

2020-01-30 02:52:09 UTC

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

2020-01-30 02:55:58 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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-01-30 02:55:58 UTC

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

2020-01-30 02:55:59 UTC

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

2020-01-30 02:55:59 UTC

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

2020-01-30 02:56:00 UTC

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

2020-01-30 02:56:00 UTC

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

2020-01-30 02:56:01 UTC

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

2020-01-30 02:56:01 UTC

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

2020-01-30 02:56:02 UTC

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

2020-01-30 02:56:02 UTC

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

2020-01-30 02:56:02 UTC

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

Details
Created

2020-01-30 03:34:04 UTC

Size

26.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

10

PG_SHA256

0d5d14ff6b075655f4421038fbde3a5d7b418c26a249a187a4175600d7aecc09

PG_VERSION

10.11


Layers

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

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

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

[#003] sha256:87f48353e3665648f8cd97643159bb8de43f4d02884c2b2a2525a50abc60bd53 - 90.03% (24.3 MB)

[#004] sha256:dce2b80cd483ab6dc702f2060736061315d61280d99318caa9ae5bb15c3603a5 - 0.03% (7.18 KB)

[#005] sha256:004ae34487bbdfbfebbbdb97e338a6d5b16bbcd4a4d2546adf5ba7b61db7f718 - 0.0% (130 Bytes)

[#006] sha256:1576a1f3267b5d8254959a8d9cba7bf77e8b79b6edac801eea661f276d7dbfa3 - 0.0% (165 Bytes)

[#007] sha256:e7ecb08b43cbff00a70ca6373f0f969eda2f0af0ddfb7214dfad17f3670ce2ed - 0.01% (3.74 KB)

[#008] sha256:cc9f4371ff641ee2bd46329be91fa78e564e82e40a537639ab63e2087f5c268c - 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:31:08 UTC

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

2020-01-30 03:31:08 UTC

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

2020-01-30 03:31:08 UTC

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

2020-01-30 03:34:00 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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-01-30 03:34:01 UTC

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

2020-01-30 03:34:02 UTC

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

2020-01-30 03:34:02 UTC

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

2020-01-30 03:34:03 UTC

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

2020-01-30 03:34:03 UTC

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

2020-01-30 03:34:03 UTC

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

2020-01-30 03:34:04 UTC

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

2020-01-30 03:34:04 UTC

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

2020-01-30 03:34:04 UTC

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

2020-01-30 03:34:04 UTC

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

Details
Created

2020-01-30 03:02:13 UTC

Size

26.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

10

PG_SHA256

0d5d14ff6b075655f4421038fbde3a5d7b418c26a249a187a4175600d7aecc09

PG_VERSION

10.11


Layers

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

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

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

[#003] sha256:8819dd0e3fb4366b6a6539add738489fa9293635962d9e9070cc49e01e4f1cb8 - 90.39% (23.6 MB)

[#004] sha256:02a4eea7ca0c64d22711d191859210d21f12ea9c79614f0ac3c9e845d7f2d834 - 0.03% (7.18 KB)

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

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

[#007] sha256:c2595a39e25b4b00814fa6aeba01200eefbd0508a6addc00a0c59165c8eb06b7 - 0.01% (3.75 KB)

[#008] sha256:20c08476620ff849a114ea6ce057c4b91981c96a225167de984541fd3510eae8 - 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 02:58:56 UTC

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

2020-01-30 02:58:59 UTC

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

2020-01-30 02:58:59 UTC

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

2020-01-30 03:01:54 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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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-01-30 03:01:57 UTC

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

2020-01-30 03:02:01 UTC

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

2020-01-30 03:02:02 UTC

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

2020-01-30 03:02:07 UTC

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

2020-01-30 03:02:09 UTC

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

2020-01-30 03:02:10 UTC

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

2020-01-30 03:02:11 UTC

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

2020-01-30 03:02:12 UTC

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

2020-01-30 03:02:13 UTC

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

2020-01-30 03:02:13 UTC

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

Details
Created

2020-01-30 03:10:12 UTC

Size

25.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

10

PG_SHA256

0d5d14ff6b075655f4421038fbde3a5d7b418c26a249a187a4175600d7aecc09

PG_VERSION

10.11


Layers

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

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

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

[#003] sha256:9535c66bbd54f3fc9d4f41b7219a7f21f512cf6260db0015411514df6cbd70c7 - 90.77% (22.8 MB)

[#004] sha256:fe5780fbf19a452fa2cc34f98f81402bd57f79016dc3220f05f6c27fc8252948 - 0.03% (7.18 KB)

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

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

[#007] sha256:2b377a6d294097d64b8e34d474bd432aae1d2da2cce5a5cce5488a465f77ee4c - 0.01% (3.75 KB)

[#008] sha256:d119a8c70941da20b1b3c7af20299758f7e0e7f03fd1c1ac6bfbe5e20e385c11 - 0.0% (118 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:07:34 UTC

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

2020-01-30 03:07:35 UTC

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

2020-01-30 03:07:35 UTC

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

2020-01-30 03:09:58 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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-01-30 03:10:03 UTC

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

2020-01-30 03:10:05 UTC

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

2020-01-30 03:10:05 UTC

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

2020-01-30 03:10:07 UTC

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

2020-01-30 03:10:08 UTC

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

2020-01-30 03:10:08 UTC

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

2020-01-30 03:10:10 UTC

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

2020-01-30 03:10:10 UTC

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

2020-01-30 03:10:11 UTC

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

2020-01-30 03:10:12 UTC

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

Details
Created

2020-01-30 02:50:31 UTC

Size

26.7 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

10

PG_SHA256

0d5d14ff6b075655f4421038fbde3a5d7b418c26a249a187a4175600d7aecc09

PG_VERSION

10.11


Layers

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

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

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

[#003] sha256:b181d2a596d4e86c2efca64e2a17bbbca2293433c4d630e89cd10c98adf63675 - 90.24% (24.1 MB)

[#004] sha256:42373a6f8d47890fc07fe27587a2b7ba33e384e7626197ec302e331d8b240910 - 0.03% (7.18 KB)

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

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

[#007] sha256:0ac336583d3e9c763b5ecf14eab9e561eea59b69a6153947c17985199d6095cd - 0.01% (3.75 KB)

[#008] sha256:213a8c58c499163c4db30d9a24f44487f291387cf0ff4a476af074a078afd11c - 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:47:41 UTC

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

2020-01-30 02:47:42 UTC

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

2020-01-30 02:47:42 UTC

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

2020-01-30 02:50:16 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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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-01-30 02:50:20 UTC

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

2020-01-30 02:50:22 UTC

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

2020-01-30 02:50:23 UTC

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

2020-01-30 02:50:25 UTC

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

2020-01-30 02:50:26 UTC

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

2020-01-30 02:50:27 UTC

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

2020-01-30 02:50:28 UTC

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

2020-01-30 02:50:29 UTC

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

2020-01-30 02:50:30 UTC

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

2020-01-30 02:50:31 UTC

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

Details
Created

2020-01-30 03:40:09 UTC

Size

28 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

10

PG_SHA256

0d5d14ff6b075655f4421038fbde3a5d7b418c26a249a187a4175600d7aecc09

PG_VERSION

10.11


Layers

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

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

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

[#003] sha256:8ee4495c38e1524865f74c2aa5d1138d6308461f3571b9058e12815836380f66 - 90.34% (25.3 MB)

[#004] sha256:3d53f89a818eada380e664b9424b87b4c1889e36847ba8f9a89c1851a432d258 - 0.03% (7.18 KB)

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

[#006] sha256:82d86c6007ef484c415ed8a274fe9f39e5da065f6e594ed82ccaaafaccd2b989 - 0.0% (196 Bytes)

[#007] sha256:ba6a0e6838876d4196203183a75708cee9b230d4b032475503423cb755da42b8 - 0.01% (3.75 KB)

[#008] sha256:dfa15da5d1a69b3b4778badf8ae5faffc6f9174a5d98836d06568eeb8f53f7c9 - 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:35:31 UTC

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

2020-01-30 03:35:34 UTC

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

2020-01-30 03:35:38 UTC

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

2020-01-30 03:39:20 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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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-01-30 03:39:28 UTC

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

2020-01-30 03:39:34 UTC

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

2020-01-30 03:39:37 UTC

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

2020-01-30 03:39:47 UTC

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

2020-01-30 03:39:52 UTC

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

2020-01-30 03:39:53 UTC

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

2020-01-30 03:40:00 UTC

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

2020-01-30 03:40:03 UTC

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

2020-01-30 03:40:06 UTC

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

2020-01-30 03:40:09 UTC

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

Details
Created

2020-01-30 02:59:34 UTC

Size

26.7 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

10

PG_SHA256

0d5d14ff6b075655f4421038fbde3a5d7b418c26a249a187a4175600d7aecc09

PG_VERSION

10.11


Layers

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

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

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

[#003] sha256:871aec16983985363ddf58d97faa906335334a1c84063355db97b047e37bf4d9 - 90.73% (24.2 MB)

[#004] sha256:eb601ef1da6f031284d2a2b4c7323a6a2012e5b4c95fe94ddc5c83f6d369f976 - 0.03% (7.18 KB)

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

[#006] sha256:fdd18c98b63012553b7de396c4611bc10f7ea81a74785537bd4dbc6d42941044 - 0.0% (196 Bytes)

[#007] sha256:8546db62dcd35b9f8a98e378ba05666286c4b0e280e6905ecf42128850cc1552 - 0.01% (3.75 KB)

[#008] sha256:45f9399f0158b0e2e883146cade4a12d8db7e22778a8fdedbf0adce6333cdc3b - 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 02:57:09 UTC

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

2020-01-30 02:57:09 UTC

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

2020-01-30 02:57:10 UTC

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

2020-01-30 02:59:29 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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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-01-30 02:59:31 UTC

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

2020-01-30 02:59:31 UTC

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

2020-01-30 02:59:31 UTC

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

2020-01-30 02:59:32 UTC

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

2020-01-30 02:59:32 UTC

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

2020-01-30 02:59:32 UTC

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

2020-01-30 02:59:33 UTC

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

2020-01-30 02:59:33 UTC

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

2020-01-30 02:59:33 UTC

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

2020-01-30 02:59:34 UTC

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

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete