2021-01-12 10:14:10 UTC
98.2 MB
1.12
MYSQL_MAJOR5.6
MYSQL_VERSION5.6.50-1debian9
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[#000] sha256:8aff230071c97ddc86b6d29fbbb7a4caae7a0183a83f08aa5a06e69e26ce2c81 - 21.89% (21.5 MB)
[#001] sha256:134fc34c9927b80992a64c2d0cad423d7806727c89e1e99fbc75c9ba06eac53c - 0.0% (1.7 KB)
[#002] sha256:27dfb473d52ef420284e53a70284b74a68b0645c1e598b3b4a86c214a0cf732f - 4.37% (4.29 MB)
[#003] sha256:702c333a167eb2923635dd5335130dbe73abcf31092f0feec58d29133965a800 - 1.37% (1.35 MB)
[#004] sha256:699bc078b4523267053f673c0b55f130f20016938f99cab926631edf94d30c21 - 0.0% (115 Bytes)
[#005] sha256:01dd862365bd0231e76a6a966deb4f34deec87713fd2992306e21fc4a1375229 - 9.93% (9.75 MB)
[#006] sha256:7dbfc4425b5a61260db302afa3ad299d5fd8da47b9a5f88cb6807a00efce7174 - 0.03% (28.3 KB)
[#007] sha256:a48cbe0a83dc943e35d35cdb0aa8031a6babf4a6cd247335851b1b0ed6875afd - 0.0% (225 Bytes)
[#008] sha256:191adddbb24b74275a0a97acc384500779c5ae5294c8c2a184a3cc2bf48a7b88 - 62.4% (61.3 MB)
[#009] sha256:e2b887ee6e990f3d0da11de8693ba523104ea989d77730c5c046aef7704212bc - 0.01% (5.03 KB)
[#010] sha256:0f676c0b559fd43d6ccf6ff5cc09cccfa6a66f4e1b601f9d7644f87d1b293f8e - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:f47757e25d3861a5c0180542919c21264323d4dace1f5a6761fc2f38b53a9003 in /
2021-01-12 00:35:21 UTC/bin/sh -c #(nop) CMD ["bash"]
2021-01-12 10:12:55 UTC/bin/sh -c groupadd -r mysql && useradd -r -g mysql mysql
2021-01-12 10:13:05 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends gnupg dirmngr && rm -rf /var/lib/apt/lists/*
2021-01-12 10:13:06 UTC/bin/sh -c #(nop) ENV GOSU_VERSION=1.12
2021-01-12 10:13:23 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-01-12 10:13:25 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-01-12 10:13:36 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends pwgen perl xz-utils && rm -rf /var/lib/apt/lists/*
2021-01-12 10:13:40 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
2021-01-12 10:13:40 UTC/bin/sh -c #(nop) ENV MYSQL_MAJOR=5.6
2021-01-12 10:13:41 UTC/bin/sh -c #(nop) ENV MYSQL_VERSION=5.6.50-1debian9
2021-01-12 10:13:43 UTC/bin/sh -c echo 'deb http://repo.mysql.com/apt/debian/ stretch mysql-5.6' > /etc/apt/sources.list.d/mysql.list
2021-01-12 10:14:07 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-01-12 10:14:07 UTC/bin/sh -c #(nop) VOLUME [/var/lib/mysql]
2021-01-12 10:14:08 UTC/bin/sh -c #(nop) COPY file:a209112a748b68e09c2f024b0d9630bcca79e1f73e9152a984e09a9b94b1df93 in /usr/local/bin/
2021-01-12 10:14:09 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
2021-01-12 10:14:10 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-01-12 10:14:10 UTC/bin/sh -c #(nop) EXPOSE 3306
2021-01-12 10:14:10 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.