Namespace
library
Image / Tag
postgres:9.6.14-alpine
Content Digest
sha256:d0d64ed768cea2b6aa57bd3d89220967b03c72be35d83ef7fab1d9527743ca7e
Details
Created

2019-07-12 03:28:33 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.6

PG_SHA256

3f08c265c9ae814f727461408ab24fdf3d954c4f7ae42d9c97b3c7e03fc31a22

PG_VERSION

9.6.14


Layers

[#000] sha256:64a1fba56ddaccf48996ac9a3f28b6d623660aaf2d708e264e446cc834dacfab - 18.38% (2.65 MB)

[#001] sha256:17ed944b01529772ff24d23c529447b6235bff8b18faeae3bd4f8302cde1fc7e - 0.0% (147 Bytes)

[#002] sha256:c58f3aadd0ce5f8e6405db5e1fc91c81338b40493e656938380f7b93ec84796f - 0.0% (113 Bytes)

[#003] sha256:da176892edbeac143eb41a88f4f39ba661f11ea7057a16a1d0e798b4ff51e8b2 - 81.55% (11.8 MB)

[#004] sha256:b23004bf2933b28b0570e89c4290673b23949868d2b6ad945ccdfa53a7b71b84 - 0.05% (6.94 KB)

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

[#006] sha256:3a97d5f7bd73a0ffb4a4b49e3cf24c26398db593408fb08ddb4a45beb66add2f - 0.0% (161 Bytes)

[#007] sha256:9445cfec53c5a0bbc69dd6f0b9680882feb86ef46bf5557bf5cc1bf71de52989 - 0.02% (2.32 KB)

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


History
2019-07-11 21:39:21 UTC

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

2019-07-11 21:39:21 UTC

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

2019-07-12 03:03:08 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-07-12 03:03:09 UTC

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

2019-07-12 03:03:10 UTC

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

2019-07-12 03:22:41 UTC

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

2019-07-12 03:22:41 UTC

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

2019-07-12 03:22:41 UTC

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

2019-07-12 03:28:28 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

2019-07-12 03:28:29 UTC

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

2019-07-12 03:28:30 UTC

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

2019-07-12 03:28:30 UTC

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

2019-07-12 03:28:31 UTC

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

2019-07-12 03:28:31 UTC

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

2019-07-12 03:28:32 UTC

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

2019-07-12 03:28:33 UTC

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

2019-07-12 03:28:33 UTC

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

2019-07-12 03:28:33 UTC

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

2019-07-12 03:28:33 UTC

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

Details
Created

2019-07-12 00:38:48 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

3f08c265c9ae814f727461408ab24fdf3d954c4f7ae42d9c97b3c7e03fc31a22

PG_VERSION

9.6.14


Layers

[#000] sha256:0503825856099e6adb39c8297af09547f69684b7016b7f3680ed801aa310baaa - 19.19% (2.66 MB)

[#001] sha256:9a0b1fe656d18b0562ac6a83ff4e83a737500ad3eebdf02cb659ba559936e6fc - 0.0% (146 Bytes)

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

[#003] sha256:7768fc299fdf2de132df0183bcc25f55a2badbae30a7d0eca8942b44b526dd2b - 80.74% (11.2 MB)

[#004] sha256:f4e4a27da7d4fcaae06409f5a115c9adab9f70f439d44df1b8e955e81c21198f - 0.05% (6.94 KB)

[#005] sha256:49cb9a9281bcb9c3396afb1973e4f4b6cbaaac096762be6f09565b494dabbb0e - 0.0% (129 Bytes)

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

[#007] sha256:ef9a01de127315d1702d915c7e4547b34fcc5348a17953dbac7e1748f8647dd7 - 0.02% (2.32 KB)

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


History
2019-07-11 22:20:52 UTC

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

2019-07-11 22:20:52 UTC

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

2019-07-12 00:10:59 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-07-12 00:10:59 UTC

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

2019-07-12 00:11:00 UTC

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

2019-07-12 00:34:01 UTC

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

2019-07-12 00:34:01 UTC

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

2019-07-12 00:34:01 UTC

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

2019-07-12 00:38:40 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

2019-07-12 00:38:41 UTC

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

2019-07-12 00:38:43 UTC

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

2019-07-12 00:38:43 UTC

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

2019-07-12 00:38:44 UTC

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

2019-07-12 00:38:45 UTC

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

2019-07-12 00:38:45 UTC

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

2019-07-12 00:38:47 UTC

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

2019-07-12 00:38:47 UTC

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

2019-07-12 00:38:48 UTC

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

2019-07-12 00:38:48 UTC

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

Details
Created

2019-08-06 00:10:22 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.6

PG_SHA256

3f08c265c9ae814f727461408ab24fdf3d954c4f7ae42d9c97b3c7e03fc31a22

PG_VERSION

9.6.14


Layers

[#000] sha256:5308e891d68f16cb976f93556acc9b776c9534f19ede4b9c843c934e6a7b4a18 - 18.52% (2.45 MB)

[#001] sha256:ecb3defa21db4ad4070096e20b19e3cdd43a109634bba79cdda181d2f6588838 - 0.0% (179 Bytes)

[#002] sha256:6254b9d7176c0e78d8e551a707f41763cb1c778e7038513f1181940a5295b590 - 0.0% (147 Bytes)

[#003] sha256:6276cd3e32026536c290d19d897549ff5ffe88437ee6f2feb441d98058d8dad0 - 81.4% (10.8 MB)

[#004] sha256:edc170966467916698a59ff3442f99023a355c64e2fe9c883e10a80b13dc3805 - 0.05% (6.94 KB)

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

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

[#007] sha256:c974e844f8cc2d5974a9c311a347d194ea2a07d1f40b67e74ba51850f306a64b - 0.02% (2.32 KB)

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


History
2019-07-11 21:49:55 UTC

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

2019-07-11 21:49:55 UTC

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

2019-07-11 22:15:23 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-07-11 22:15:25 UTC

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

2019-07-11 22:15:30 UTC

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

2019-08-06 00:08:20 UTC

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

2019-08-06 00:08:21 UTC

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

2019-08-06 00:08:21 UTC

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

2019-08-06 00:10:14 UTC

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

2019-08-06 00:10:15 UTC

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

2019-08-06 00:10:17 UTC

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

2019-08-06 00:10:17 UTC

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

2019-08-06 00:10:18 UTC

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

2019-08-06 00:10:19 UTC

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

2019-08-06 00:10:19 UTC

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

2019-08-06 00:10:20 UTC

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

2019-08-06 00:10:21 UTC

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

2019-08-06 00:10:21 UTC

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

2019-08-06 00:10:22 UTC

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

Details
Created

2019-08-06 00:23:07 UTC

Size

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

PG_SHA256

3f08c265c9ae814f727461408ab24fdf3d954c4f7ae42d9c97b3c7e03fc31a22

PG_VERSION

9.6.14


Layers

[#000] sha256:50e6a8f95d08735cf973d06f486e8d4906f0a8009fede2aa1b1d03accbda9281 - 18.22% (2.27 MB)

[#001] sha256:a6bd6c57d7522e713a27d9ec67ec17db670614dbce96a6898785fb11200008b6 - 0.0% (179 Bytes)

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

[#003] sha256:214c573895696d42593b60211a8925624fccca7d43f95dbb52dab08b9ce1d63b - 81.7% (10.2 MB)

[#004] sha256:fe8e7a44d5a8bcad68b8faeda443a9a828fb1a476a93b3e6a4671283002c43f7 - 0.05% (6.94 KB)

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

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

[#007] sha256:3039cc4b58f84c7127ca34be8d5c1f30d7b623076fcf8e42f168efb081869138 - 0.02% (2.32 KB)

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


History
2019-07-11 21:57:38 UTC

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

2019-07-11 21:57:39 UTC

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

2019-08-06 00:13:55 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-08-06 00:13:55 UTC

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

2019-08-06 00:13:56 UTC

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

2019-08-06 00:21:20 UTC

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

2019-08-06 00:21:20 UTC

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

2019-08-06 00:21:20 UTC

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

2019-08-06 00:23: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 && 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

2019-08-06 00:23:02 UTC

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

2019-08-06 00:23:03 UTC

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

2019-08-06 00:23:03 UTC

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

2019-08-06 00:23:04 UTC

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

2019-08-06 00:23:05 UTC

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

2019-08-06 00:23:05 UTC

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

2019-08-06 00:23:06 UTC

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

2019-08-06 00:23:06 UTC

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

2019-08-06 00:23:07 UTC

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

2019-08-06 00:23:07 UTC

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

Details
Created

2019-07-12 14:51:17 UTC

Size

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

9.6

PG_SHA256

3f08c265c9ae814f727461408ab24fdf3d954c4f7ae42d9c97b3c7e03fc31a22

PG_VERSION

9.6.14


Layers

[#000] sha256:31c29410a04898f7aed30f526990fced7d2a158513930c32fb05dbed3e8518da - 18.88% (2.59 MB)

[#001] sha256:51c96026e78e4ac0f290dae7d97da2939252cff68d4b1d5718281a869f8f24c2 - 0.0% (178 Bytes)

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

[#003] sha256:9ed29ebd3f746967311cc839c60cfce7f9b2a6e95798751379bcd2dcb6a69888 - 81.04% (11.1 MB)

[#004] sha256:262d73041fc0afe783bd2b8cf0e9882c7751d9d9b5ad722dee35d24ddc9611cb - 0.05% (6.94 KB)

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

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

[#007] sha256:19d0ff75569997ccd8e773ee18394af8d598fb4b3789616f167f3ee7388d23fe - 0.02% (2.32 KB)

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


History
2019-07-11 21:39:41 UTC

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

2019-07-11 21:39:41 UTC

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

2019-07-11 23:02:08 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-07-11 23:02:08 UTC

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

2019-07-11 23:02:09 UTC

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

2019-07-12 14:48:42 UTC

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

2019-07-12 14:48:43 UTC

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

2019-07-12 14:48:44 UTC

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

2019-07-12 14:51: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 && 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

2019-07-12 14:51:03 UTC

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

2019-07-12 14:51:07 UTC

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

2019-07-12 14:51:08 UTC

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

2019-07-12 14:51:10 UTC

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

2019-07-12 14:51:10 UTC

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

2019-07-12 14:51:11 UTC

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

2019-07-12 14:51:14 UTC

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

2019-07-12 14:51:15 UTC

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

2019-07-12 14:51:16 UTC

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

2019-07-12 14:51:17 UTC

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

Details
Created

2019-07-12 00:30:12 UTC

Size

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

3f08c265c9ae814f727461408ab24fdf3d954c4f7ae42d9c97b3c7e03fc31a22

PG_VERSION

9.6.14


Layers

[#000] sha256:f4cdf4d5cd47c3a8fe7637d32e8739c247cbcefc2502104b3b9d53cf7a482ee9 - 17.95% (2.68 MB)

[#001] sha256:53e0a1eaa4c9504f17a3fa0ef748fac48ce2616fba26c206df05ab012ff224bc - 0.0% (178 Bytes)

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

[#003] sha256:7f275444ae7d6719422f327fdd852561ad4d0fde490c21d08532d11f40321fa7 - 81.98% (12.2 MB)

[#004] sha256:cfb687ab979c0ef49311c2a307cc7653b1358603b316c4704df59489fd7c28cc - 0.05% (6.94 KB)

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

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

[#007] sha256:ee0f461419a66ebea6ebb00a164966c3a434fe68db41cacf2a95186bef6e9600 - 0.02% (2.32 KB)

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


History
2019-07-11 22:28:10 UTC

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

2019-07-11 22:28:13 UTC

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

2019-07-12 00:11:22 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-07-12 00:11:28 UTC

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

2019-07-12 00:11:41 UTC

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

2019-07-12 00:25:40 UTC

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

2019-07-12 00:25:42 UTC

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

2019-07-12 00:25:45 UTC

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

2019-07-12 00:29: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

2019-07-12 00:29:12 UTC

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

2019-07-12 00:29:23 UTC

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

2019-07-12 00:29:27 UTC

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

2019-07-12 00:29:37 UTC

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

2019-07-12 00:29:40 UTC

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

2019-07-12 00:29:44 UTC

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

2019-07-12 00:29:53 UTC

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

2019-07-12 00:29:59 UTC

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

2019-07-12 00:30:05 UTC

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

2019-07-12 00:30:12 UTC

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

Details
Created

2019-07-11 23:18:39 UTC

Size

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

3f08c265c9ae814f727461408ab24fdf3d954c4f7ae42d9c97b3c7e03fc31a22

PG_VERSION

9.6.14


Layers

[#000] sha256:a5009044856cb7ec46c0bdccbfae22ed15a7024bee22609e76b16cbb9436ce8a - 18.12% (2.45 MB)

[#001] sha256:5b5ac024be187dba41f2e926dec085a07102a8b78dba6e87ec81cc3fe1307fc0 - 0.0% (146 Bytes)

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

[#003] sha256:2f692d719e68f3405b65f1cb5a1f3be66dd955cfa54f355bcab0028e4acadbe2 - 81.8% (11.1 MB)

[#004] sha256:27e1cf45d53e11e5195c469391837b830725c1952152a5359c688dced40155ce - 0.05% (6.94 KB)

[#005] sha256:3d53a4740b7f8699179b5ded83234b9d1de8398b0daa5b61cdadcfb1a3ea6e58 - 0.0% (129 Bytes)

[#006] sha256:203dddcb11d7e34733d8b83d4a5def9e109b0f087bf9c76e596752336d57ed09 - 0.0% (162 Bytes)

[#007] sha256:f42d95432427c5f28312ff00c2f86c0faef313ad8e480ba94c2e76fdc049c3b7 - 0.02% (2.32 KB)

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


History
2019-07-11 21:42:03 UTC

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

2019-07-11 21:42:04 UTC

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

2019-07-11 23:06:18 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-07-11 23:06:18 UTC

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

2019-07-11 23:06:19 UTC

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

2019-07-11 23:16:03 UTC

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

2019-07-11 23:16:03 UTC

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

2019-07-11 23:16:04 UTC

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

2019-07-11 23:18:33 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

2019-07-11 23:18:34 UTC

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

2019-07-11 23:18:35 UTC

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

2019-07-11 23:18:35 UTC

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

2019-07-11 23:18:36 UTC

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

2019-07-11 23:18:37 UTC

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

2019-07-11 23:18:37 UTC

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

2019-07-11 23:18:38 UTC

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

2019-07-11 23:18:38 UTC

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

2019-07-11 23:18:39 UTC

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

2019-07-11 23:18:39 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