Namespace
library
Image / Tag
mysql:8.0.16
Content Digest
sha256:5d11283aee9b73509b737785e0ad79a2d9abf51f4abf3f221702a8add0e36bf2
Details
Created

2019-07-17 22:08:32 UTC

Size

123 MB

Content Digest
Environment
GOSU_VERSION

1.7

MYSQL_MAJOR

8.0

MYSQL_VERSION

8.0.16-2debian9

PATH

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


Layers

[#000] sha256:0a4690c5d889e116874bf45dc757b515565a3bd9b0f6c04054d62280bb4f4ecf - 17.38% (21.4 MB)

[#001] sha256:98aa2fc6cbebccfacb58760fbb91c528114848559a6ca019c1b50ee62573861f - 0.0% (1.71 KB)

[#002] sha256:0777e6eb0e6ff56bf816af668828e63a39ba945a5ea512bc1cf2d160e47810e2 - 3.48% (4.29 MB)

[#003] sha256:2464189c041cb5cf939f0167de273268261d33c40a834ad2984dda198f554152 - 0.98% (1.21 MB)

[#004] sha256:b45df9dc827de6b2c632dedc9358c1e136b82ea23cf74ffee0b9a6a12d5d9429 - 0.0% (115 Bytes)

[#005] sha256:b42b000861608f85dfe0a0d46a080f39cb4b5ec1927e7dbb396800cfb545f91e - 9.36% (11.5 MB)

[#006] sha256:bb93567627c7fbbaf25357611207a87ea703a0078c75c7c52a3bf34b00f752d8 - 0.02% (25.5 KB)

[#007] sha256:b9125bcebe66bcb42f7fd8bda3ad3e4c79d0bfc84ca87e76a5e59d6645d679ce - 0.0% (222 Bytes)

[#008] sha256:d263609b23c724b5f42526b39cfdb6df393709df301f7c49f0beb85ed742da56 - 68.78% (84.9 MB)

[#009] sha256:c9adffb2afb9de1713f48741ca099145581841542479e04b31aae50c64de807a - 0.0% (897 Bytes)

[#010] sha256:a555d31b3e6ca23133ae5aca7cb74175b772188d8cab63e88573d7ef8c2d2ac7 - 0.0% (2.88 KB)

[#011] sha256:9524d219b6dbe32f9149e9c0be4e2fdaa091975d28801824966dbd6d92f78800 - 0.0% (121 Bytes)


History
2019-07-09 21:32:29 UTC

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

2019-07-09 21:32:29 UTC

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

2019-07-17 22:07:47 UTC

/bin/sh -c groupadd -r mysql && useradd -r -g mysql mysql

2019-07-17 22:07:53 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends gnupg dirmngr && rm -rf /var/lib/apt/lists/*

2019-07-17 22:07:53 UTC

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

2019-07-17 22:08:04 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 --batch --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && gpgconf --kill all && rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2019-07-17 22:08:05 UTC

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

2019-07-17 22:08:11 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends pwgen openssl perl && rm -rf /var/lib/apt/lists/*

2019-07-17 22:08:14 UTC

/bin/sh -c set -ex; key='A4A9406876FCBD3C456770C88C718D3B5072E1F5'; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; gpg --batch --export "$key" > /etc/apt/trusted.gpg.d/mysql.gpg; gpgconf --kill all; rm -rf "$GNUPGHOME"; apt-key list > /dev/null

2019-07-17 22:08:14 UTC

/bin/sh -c #(nop) ENV MYSQL_MAJOR=8.0

2019-07-17 22:08:15 UTC

/bin/sh -c #(nop) ENV MYSQL_VERSION=8.0.16-2debian9

2019-07-17 22:08:15 UTC

/bin/sh -c echo "deb http://repo.mysql.com/apt/debian/ stretch mysql-${MYSQL_MAJOR}" > /etc/apt/sources.list.d/mysql.list

2019-07-17 22:08:30 UTC

/bin/sh -c { echo mysql-community-server mysql-community-server/data-dir select ''; echo mysql-community-server mysql-community-server/root-pass password ''; echo mysql-community-server mysql-community-server/re-root-pass password ''; echo mysql-community-server mysql-community-server/remove-test-db select false; } | debconf-set-selections && apt-get update && apt-get install -y mysql-community-client="${MYSQL_VERSION}" mysql-community-server-core="${MYSQL_VERSION}" && rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/mysql && mkdir -p /var/lib/mysql /var/run/mysqld && chown -R mysql:mysql /var/lib/mysql /var/run/mysqld && chmod 777 /var/run/mysqld

2019-07-17 22:08:30 UTC

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

2019-07-17 22:08:31 UTC

/bin/sh -c #(nop) COPY dir:478f098f3681084f7493af1f04cbcd3eeda6f10e0dd2f5c740acd25328a73455 in /etc/mysql/

2019-07-17 22:08:31 UTC

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

2019-07-17 22:08:31 UTC

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

2019-07-17 22:08:32 UTC

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

2019-07-17 22:08:32 UTC

/bin/sh -c #(nop) EXPOSE 3306 33060

2019-07-17 22:08:32 UTC

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

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