Namespace
library
Image / Tag
mysql:8.0.14
Content Digest
sha256:048c2c616866c47c8a9fb604548d32ce842be292b56fba3d90fc07e0e143dac4
Details
Created

2019-01-23 04:23:32 UTC

Size

130 MB

Content Digest
Environment
GOSU_VERSION

1.7

MYSQL_MAJOR

8.0

MYSQL_VERSION

8.0.14-1debian9

PATH

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


Layers

[#000] sha256:5e6ec7f28fb77f84f64b8c29fcb0a746260563f5858315e3e9fcc4aee2844840 - 16.54% (21.5 MB)

[#001] sha256:4140e62498e13d9c42c921718d8c5a991b42f9fd21c1e1b14f459e67adee96f2 - 0.0% (1.7 KB)

[#002] sha256:e7bc612618a06e12cd67a22a844c303ead1922bb4563ea9fbeaaf230e8dcb5c9 - 3.31% (4.29 MB)

[#003] sha256:1af808cf1124b2f566efceda477c52bcd9d17b2e8bc91151ded728ebe229c4ff - 0.93% (1.21 MB)

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

[#005] sha256:3a28cb03e3dcce5aa8f8dbaa3a363fbafe303435231e8f111a4e2483e1fa7eae - 8.9% (11.5 MB)

[#006] sha256:2b52dda3bd7d4cd4f283a9bd9c10e53a3dc092f78fe3a5ded5cb18b94dab8ee4 - 0.02% (25.2 KB)

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

[#008] sha256:ecba98b7a588b3c9c38ace520165b80a798248d3eac2804fcef69f74f7602717 - 70.3% (91.2 MB)

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

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

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


History
2019-01-22 19:30:32 UTC

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

2019-01-22 19:30:32 UTC

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

2019-01-23 04:22:37 UTC

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

2019-01-23 04:22:44 UTC

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

2019-01-23 04:22:44 UTC

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

2019-01-23 04:23:01 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-01-23 04:23:01 UTC

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

2019-01-23 04:23:07 UTC

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

2019-01-23 04:23:11 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-01-23 04:23:11 UTC

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

2019-01-23 04:23:11 UTC

/bin/sh -c #(nop) ENV MYSQL_VERSION=8.0.14-1debian9

2019-01-23 04:23:12 UTC

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

2019-01-23 04:23: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-01-23 04:23:30 UTC

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

2019-01-23 04:23:31 UTC

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

2019-01-23 04:23:31 UTC

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

2019-01-23 04:23:32 UTC

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

2019-01-23 04:23:32 UTC

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

2019-01-23 04:23:32 UTC

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

2019-01-23 04:23: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