2021-12-21 02:56:51 UTC
148 MB
1.12
MYSQL_MAJOR5.7
MYSQL_VERSION5.7.36-1debian10
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[#000] sha256:72a69066d2febc34d8f3dbcb645f7b851a57e9681322ece7ad8007503b783c19 - 17.54% (25.9 MB)
[#001] sha256:93619dbc5b36fe839e30a055a373bb628be3c22109abcb483cc56c8dd5f8cf47 - 0.0% (1.69 KB)
[#002] sha256:99da31dd61422c9b6ce417b189ebaf568e6cfa7a5343f7db4ad7c2ae2127a238 - 2.7% (3.99 MB)
[#003] sha256:626033c43d70213ba8a5f8738ef13f6fffde083a431217d2e183fb345bade8ba - 0.92% (1.35 MB)
[#004] sha256:37d5d7efb64ee4d2f6936691bb9383c64ba1ac7ad302e1be0c6417f6f9611ef4 - 0.0% (149 Bytes)
[#005] sha256:ac563158d7217088d06b716be9ea5131fe1ae47572467fbbdfb1031487b9957a - 8.69% (12.8 MB)
[#006] sha256:d2ba16033dad96fe979d13da439d5902ea33f7d3d6c0da94adf0a8e9e5de2c01 - 0.0% (1.83 KB)
[#007] sha256:0ceb82207cd70dc0f91620ef1cac7c4c1f8b4eb64cd0868852f0ef5afd261fdf - 0.0% (225 Bytes)
[#008] sha256:37f2405cae96cfa4335b4dd266b26647eecbbe8236493d4deb595976e543815e - 70.16% (104 MB)
[#009] sha256:e2482e017e53874be685cb8d4a43e70895376ed1dc71ab313d88eb1e154feda9 - 0.0% (5.41 KB)
[#010] sha256:70deed891d42e8d9ee11ee4f191b83e08496711d3a90328f70ec8ac681aab6dd - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:bd5c9e0e0145fe33beee9d73615cc89b5c5459bb84ea164cb1bbd8c999f0c2e4 in /
2021-12-21 01:23:04 UTC/bin/sh -c #(nop) CMD ["bash"]
2021-12-21 02:55:02 UTC/bin/sh -c groupadd -r mysql && useradd -r -g mysql mysql
2021-12-21 02:55:10 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends gnupg dirmngr && rm -rf /var/lib/apt/lists/*
2021-12-21 02:55:11 UTC/bin/sh -c #(nop) ENV GOSU_VERSION=1.12
2021-12-21 02:55:25 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
2021-12-21 02:55:26 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-12-21 02:55:35 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/*
2021-12-21 02:55:43 UTC/bin/sh -c set -ex; key='A4A9406876FCBD3C456770C88C718D3B5072E1F5'; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver keyserver.ubuntu.com --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
2021-12-21 02:56:24 UTC/bin/sh -c #(nop) ENV MYSQL_MAJOR=5.7
2021-12-21 02:56:24 UTC/bin/sh -c #(nop) ENV MYSQL_VERSION=5.7.36-1debian10
2021-12-21 02:56:25 UTC/bin/sh -c echo 'deb http://repo.mysql.com/apt/debian/ buster mysql-5.7' > /etc/apt/sources.list.d/mysql.list
2021-12-21 02:56:48 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}" && 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 && 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 1777 /var/run/mysqld /var/lib/mysql
2021-12-21 02:56:48 UTC/bin/sh -c #(nop) VOLUME [/var/lib/mysql]
2021-12-21 02:56:49 UTC/bin/sh -c #(nop) COPY file:345a22fe55d3e6783a17075612415413487e7dba27fbf1000a67c7870364b739 in /usr/local/bin/
2021-12-21 02:56:50 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
2021-12-21 02:56:50 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-12-21 02:56:51 UTC/bin/sh -c #(nop) EXPOSE 3306 33060
2021-12-21 02:56:51 UTC/bin/sh -c #(nop) CMD ["mysqld"]
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.