Tag

library/postgres:9.6-rc1
Content Digest: sha256:039156777a9753d91872fc10cb6aa255f0685331b74e5351bb3c36f1f0399f70
Details
Pull Command

docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:9.6-rc1


Manifests
Details
Content Digest

sha256:6fce8015e7acb85e116fe24d456d3bbb77f8a819040d9a5389b6999730ae8ba1

Created

2016-09-23 22:20:45 UTC

Size

96.8 MB


Environment
GOSU_VERSION

1.7

LANG

en_US.utf8

PATH

/usr/lib/postgresql/9.6/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.6

PG_VERSION

9.6~rc1-1.pgdg80+1


Layers

[#000] sha256:6a5a5368e0c2d3e5909184fa28ddfd56072e7ff3ee9a945876f7eee5896ef5bb - 50.59% (49 MB)

[#001] sha256:193f770cec44cad8b44a8b4f3c4a742d0e33f7bbcd24a4f4c45583edcf8f82eb - 0.0% (2 KB)

[#002] sha256:33647077f2ee85eeac192f59a8e909e820783e5194b9ca4a28def6be33811afb - 1.2% (1.16 MB)

[#003] sha256:53bc65f848403323313c2f7678434da89da7d2a802e4c2cb96c2fb65d6412cbd - 6.76% (6.55 MB)

[#004] sha256:a4d3b0f1c16a42cac37f12bc8cc757d61823fa0aab1d7085678a4ca5ef1f55c3 - 0.0% (114 Bytes)

[#005] sha256:bdbe3c2ddbbd114c3cf1c0b6654c31e97312b4b6630599abdbb082e9cb9514df - 0.0% (3.33 KB)

[#006] sha256:55e630146588e7d13623d753c7dcfb29dca292e16f4ee1a9db2bc2a49336f548 - 0.0% (225 Bytes)

[#007] sha256:ec10efd47c28f047f6dfdc97d142bd2c82afc07930625d768836184ff1a0ae69 - 41.44% (40.1 MB)

[#008] sha256:ebab1312478d42fae256e8cc0da1a137657582dec23dfb119f3d7f1edc308038 - 0.01% (6.99 KB)

[#009] sha256:7a8071b0277cf50fc658f84519c828b094362952c2d49626adfb3ec8a4dc9f0f - 0.0% (132 Bytes)

[#010] sha256:f5d045111dc28b9ded2bbadadfd14cd101da2cef8ab192c0ee2427863d351d1c - 0.0% (1.22 KB)


History
2016-09-23 18:08:50 UTC

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

2016-09-23 18:08:51 UTC

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

2016-09-23 22:12:39 UTC

/bin/sh -c groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres

2016-09-23 22:12:40 UTC

/bin/sh -c #(nop) ENV GOSU_VERSION=1.7

2016-09-23 22:12:56 UTC

/bin/sh -c set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2016-09-23 22:13:03 UTC

/bin/sh -c apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8

2016-09-23 22:13:03 UTC

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

2016-09-23 22:13:04 UTC

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

2016-09-23 22:13:05 UTC

/bin/sh -c apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8

2016-09-23 22:20:05 UTC

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

2016-09-23 22:20:05 UTC

/bin/sh -c #(nop) ENV PG_VERSION=9.6~rc1-1.pgdg80+1

2016-09-23 22:20:06 UTC

/bin/sh -c echo 'deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main' $PG_MAJOR > /etc/apt/sources.list.d/pgdg.list

2016-09-23 22:20:40 UTC

/bin/sh -c apt-get update && apt-get install -y postgresql-common && sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf && apt-get install -y postgresql-$PG_MAJOR=$PG_VERSION postgresql-contrib-$PG_MAJOR=$PG_VERSION && rm -rf /var/lib/apt/lists/*

2016-09-23 22:20:41 UTC

/bin/sh -c mv -v /usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample /usr/share/postgresql/ && ln -sv ../postgresql.conf.sample /usr/share/postgresql/$PG_MAJOR/ && sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/share/postgresql/postgresql.conf.sample

2016-09-23 22:20:42 UTC

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

2016-09-23 22:20:42 UTC

/bin/sh -c #(nop) ENV PATH=/usr/lib/postgresql/9.6/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2016-09-23 22:20:43 UTC

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

2016-09-23 22:20:43 UTC

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

2016-09-23 22:20:44 UTC

/bin/sh -c #(nop) COPY file:aefa30113260f63949e77cbc9a66aa22f27b1f79479507fd0d32f9b6a6994d69 in /

2016-09-23 22:20:44 UTC

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

2016-09-23 22:20:44 UTC

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

2016-09-23 22:20:45 UTC

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