2020-06-09 07:22:12 UTC
98.1 MB
1.12
MYSQL_MAJOR5.6
MYSQL_VERSION5.6.48-1debian9
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[#000] sha256:7d2977b12acb33f192e3f20b7e15a467cc8f3f5124a15d975a6d4afe5fa3d258 - 21.89% (21.5 MB)
[#001] sha256:5fb8400e7f070d8f49a4948426702454922382a6643db2a8547614258185eb47 - 0.0% (1.7 KB)
[#002] sha256:234877fbb165b4219127d8d8c5a36c89533f0fd8496fedea46d3be950993dc1f - 4.37% (4.29 MB)
[#003] sha256:6fe1021f12f383728116c00d312032068542e5e5b39d014efaea58a52fa3714f - 1.37% (1.35 MB)
[#004] sha256:7e36fe6b53f00d381bd369862bec14d84d57c10743ebb876c61c7689ae8699eb - 0.0% (115 Bytes)
[#005] sha256:996ec709c11ba48cf0d54a4283187f9ba9ec04ca24cb1265261d344705d7fd8a - 9.94% (9.75 MB)
[#006] sha256:5198b7523387a277c164ae93f3d4d6c81f8b363fa3d9a0a7b99e031e49d3b328 - 0.03% (27.7 KB)
[#007] sha256:cc9bdad4dcc02e0727b48128a3a1aeb20097d5a19c8cbaa118fbde668ef540c4 - 0.0% (221 Bytes)
[#008] sha256:380cd37ad979bf6d7b7994d45391fadae80e3d980f2677da5147a2021e50abc0 - 62.39% (61.2 MB)
[#009] sha256:d64465acf034b5bfaf5ec5d105bed9415c1756e5aa7eb6bbb552c67dbd64d2f1 - 0.01% (5.04 KB)
[#010] sha256:d4ee6606b3ab33681e4d218a127f8a44580c71b7cc137c56f6dc513acf4a8612 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:57b431451a292755d0f13673f5f3bea9f62aea36c7a1b59d34d7d200ba134fea in /
2020-06-09 01:23:35 UTC/bin/sh -c #(nop) CMD ["bash"]
2020-06-09 07:21:25 UTC/bin/sh -c groupadd -r mysql && useradd -r -g mysql mysql
2020-06-09 07:21:31 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends gnupg dirmngr && rm -rf /var/lib/apt/lists/*
2020-06-09 07:21:31 UTC/bin/sh -c #(nop) ENV GOSU_VERSION=1.12
2020-06-09 07:21:42 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-06-09 07:21:43 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-06-09 07:21:49 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends pwgen perl xz-utils && rm -rf /var/lib/apt/lists/*
2020-06-09 07:21:52 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-06-09 07:21:52 UTC/bin/sh -c #(nop) ENV MYSQL_MAJOR=5.6
2020-06-09 07:21:52 UTC/bin/sh -c #(nop) ENV MYSQL_VERSION=5.6.48-1debian9
2020-06-09 07:21:53 UTC/bin/sh -c echo "deb http://repo.mysql.com/apt/debian/ stretch mysql-${MYSQL_MAJOR}" > /etc/apt/sources.list.d/mysql.list
2020-06-09 07:22:11 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-06-09 07:22:11 UTC/bin/sh -c #(nop) VOLUME [/var/lib/mysql]
2020-06-09 07:22:11 UTC/bin/sh -c #(nop) COPY file:7cbb26bbdb8e71b36aafda38dbac08caa641714a19991b86cde77daf3286ec11 in /usr/local/bin/
2020-06-09 07:22:12 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
2020-06-09 07:22:12 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-06-09 07:22:12 UTC/bin/sh -c #(nop) EXPOSE 3306
2020-06-09 07:22:12 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.