Namespace
library
Image / Tag
mysql:5.7.21
Content Digest
sha256:691c55aabb3c4e3b89b953dd2f022f7ea845e5443954767d321d5f5fa394e28c
Details
Created

2018-03-14 07:47:53 UTC

Size

118 MB

Content Digest
Environment
GOSU_VERSION

1.7

MYSQL_MAJOR

5.7

MYSQL_VERSION

5.7.21-1debian9

PATH

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


Layers

[#000] sha256:2a72cbf407d67c7a7a76dd48e432091678e297140dce050ad5eccad918a9f8d6 - 18.18% (21.4 MB)

[#001] sha256:38680a9b47a889afdad30e2b778870f30b2adfb670996da71d32fef815446b32 - 0.0% (1.7 KB)

[#002] sha256:4c732aa0eb1bf8ee7a7dfdb2acdb3d1579110241fe47747d2b14a77e2cb504e2 - 3.64% (4.29 MB)

[#003] sha256:c5317a34eddd75b2b48e525137d7d7adc1cbba157fe58eb2fc60bf93b68c7b28 - 1.03% (1.21 MB)

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

[#005] sha256:e8ecd8bec5abc5756bbbd1df8ddbe1a353ed521659cfeffeea3c0beed5b9edf2 - 9.77% (11.5 MB)

[#006] sha256:2a650284a6a80b0d6c4e22f2bd30138dbc439743c5ffc2f1aed4f0a46bb4a5f9 - 0.02% (20.8 KB)

[#007] sha256:5b5108d08c6de25ab4c9deb68b97ab4730e29a791ed4df8a4eb8be1dc923cd3a - 0.0% (225 Bytes)

[#008] sha256:beaff1261757f472efc32ac65001ca49560f36549d9d15d05cf02bc92bc37f19 - 67.36% (79.5 MB)

[#009] sha256:c1a55c6375b519dfc0e608b14d744836952d8c475b81a4c9626fddf2e758fd01 - 0.0% (2.62 KB)

[#010] sha256:8181cde51c6516c052322c7a2b0ca6639b86ef4c2439abe153748f04e30e80b0 - 0.0% (121 Bytes)


History
2018-03-13 22:27:37 UTC

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

2018-03-13 22:27:37 UTC

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

2018-03-14 07:45:05 UTC

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

2018-03-14 07:45:14 UTC

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

2018-03-14 07:45:14 UTC

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

2018-03-14 07:45:52 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 -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

2018-03-14 07:45:53 UTC

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

2018-03-14 07:45:58 UTC

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

2018-03-14 07:46:02 UTC

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

2018-03-14 07:47:28 UTC

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

2018-03-14 07:47:28 UTC

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

2018-03-14 07:47:29 UTC

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

2018-03-14 07:47:51 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-server="${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 && find /etc/mysql/ -name '*.cnf' -print0 | xargs -0 grep -lZE '^(bind-address|log)' | xargs -rt -0 sed -Ei 's/^(bind-address|log)/#&/' && echo '[mysqld]\nskip-host-cache\nskip-name-resolve' > /etc/mysql/conf.d/docker.cnf

2018-03-14 07:47:51 UTC

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

2018-03-14 07:47:52 UTC

/bin/sh -c #(nop) COPY file:05922d368ede304251c6ec3c7ddaaad93a2e4694cba77c9b3df80e006edd7b0e in /usr/local/bin/

2018-03-14 07:47:52 UTC

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

2018-03-14 07:47:53 UTC

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

2018-03-14 07:47:53 UTC

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

2018-03-14 07:47:53 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