Namespace
library
Image / Tag
mysql:5.7.29
Content Digest
sha256:95b4bc7c1b111906fdb7a39cd990dd99f21c594722735d059769b80312eb57a7
Details
Created

2020-04-23 04:15:52 UTC

Size

151 MB

Content Digest
Environment
GOSU_VERSION

1.12

MYSQL_MAJOR

5.7

MYSQL_VERSION

5.7.29-1debian10

PATH

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


Layers

[#000] sha256:54fec2fa59d0a0de9cd2dec9850b36c43de451f1fd1c0a5bf8f1cf26a61a5da4 - 17.11% (25.8 MB)

[#001] sha256:bcc6c614591231a51a8abf93a762208fd1aed3f72f3e3fd0b8907904e3c9a38b - 0.0% (1.69 KB)

[#002] sha256:951c3d959c9d9548b3c320af7856e6e16c967daf7d280ac2607e49aa2b3816dd - 2.64% (3.98 MB)

[#003] sha256:05de4d0e206e076ed00d1b32a5104bcd7246484f51de192ba7d5b5c75fe215d0 - 0.9% (1.35 MB)

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

[#005] sha256:d9185034607beae95fac5ee5b684c0182fa10a66b51ba65a7e81345e860b91c2 - 8.49% (12.8 MB)

[#006] sha256:013a9c64dadc90a7aef7354825e9668f7b7667ad915df865cb4d05142a76938e - 0.0% (2.34 KB)

[#007] sha256:58b7b840ebff81e42f4ba9bc82fe6da1012d22753693561022c1cadce29bf98e - 0.0% (225 Bytes)

[#008] sha256:9b85c0abc43d54e9d83638b7ac1bdeca8c38dab7cda795c45541b52fd0fcda5e - 70.86% (107 MB)

[#009] sha256:bdf022f63e85cdffd7cfea4a44248b378f34553171463eaee142ef09aefa1f33 - 0.0% (5.01 KB)

[#010] sha256:35f7f707ce83e3b72c259b3e9e813cc5c10f2bd0f723193f3f58ef277c58ddd5 - 0.0% (121 Bytes)


History
2020-04-23 00:20:32 UTC

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

2020-04-23 00:20:32 UTC

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

2020-04-23 04:13:52 UTC

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

2020-04-23 04:13:58 UTC

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

2020-04-23 04:13:59 UTC

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

2020-04-23 04:14:08 UTC

/bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends ca-certificates wget; rm -rf /var/lib/apt/lists/*; dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')"; wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch"; wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver hkps://keys.openpgp.org --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; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; chmod +x /usr/local/bin/gosu; gosu --version; gosu nobody true

2020-04-23 04:14:09 UTC

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

2020-04-23 04:14:17 UTC

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

2020-04-23 04:14:20 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

2020-04-23 04:15:08 UTC

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

2020-04-23 04:15:09 UTC

/bin/sh -c #(nop) ENV MYSQL_VERSION=5.7.29-1debian10

2020-04-23 04:15:10 UTC

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

2020-04-23 04:15:49 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

2020-04-23 04:15:49 UTC

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

2020-04-23 04:15:50 UTC

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

2020-04-23 04:15:51 UTC

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

2020-04-23 04:15:52 UTC

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

2020-04-23 04:15:52 UTC

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

2020-04-23 04:15:52 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