2022-10-05 04:23:22 UTC
155 MB
1.14
MYSQL_MAJOR5.7
MYSQL_VERSION5.7.39-1debian10
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[#000] sha256:f6e04ba6531065d60cd73d6509ec153307f5cc6f95e72ca47745d37aef6380a7 - 16.7% (25.9 MB)
[#001] sha256:61a11d1b00d26182c3e9edb027d075aab8c6529517f09b58b9474b42e96b7282 - 0.0% (1.7 KB)
[#002] sha256:65869aed91d26fee82355255ac43a74ad1b1efab8c4f9733cb985f5a65a215bc - 2.57% (3.99 MB)
[#003] sha256:6b594fff16bcffe32ae29c2e6ef1d64e50b63c956002ed96f4aeb670ae2c9d15 - 0.85% (1.32 MB)
[#004] sha256:f46e1e42bcc85e082d51a8bdfde663ae17168e85c0773a7f9d7ffbacfc03abd4 - 0.0% (149 Bytes)
[#005] sha256:b6ecc9da4c857053937cf0e8c8f6b93d1e20a238dc8986301597f014a58607ef - 8.67% (13.4 MB)
[#006] sha256:9ed6254a5eabd760fd83f3fe87470ef4c5d74e38809164e20d82ccea7403ad82 - 0.0% (2.49 KB)
[#007] sha256:c0225260858f5bec45902e81dc388af9707d656b2ac6d16a89c0195636bbd76c - 0.0% (250 Bytes)
[#008] sha256:fc5200d9e491caac48656cd7f43bfb68ddeb2a210567b8ef6f7c4399df3b3332 - 71.21% (110 MB)
[#009] sha256:28d6ad7fb947346c41003be489f740c140d6deb361bcba625733a8971f79fe2a - 0.0% (5.26 KB)
[#010] sha256:013f5c86a18f9fa9483bb890aa37484141e557cab4c119fff68c34da2e22e5d8 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:706105a4a2ea63ba10911afb5998d321ff745f9bcedd2e2e8efcf33f5dad584b in /
2022-10-04 23:27:01 UTC/bin/sh -c #(nop) CMD ["bash"]
2022-10-05 04:22:36 UTC/bin/sh -c groupadd -r mysql && useradd -r -g mysql mysql
2022-10-05 04:22:41 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends gnupg dirmngr && rm -rf /var/lib/apt/lists/*
2022-10-05 04:22:42 UTC/bin/sh -c #(nop) ENV GOSU_VERSION=1.14
2022-10-05 04:22:51 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
2022-10-05 04:22:51 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-10-05 04:22:58 UTC/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends bzip2 openssl perl xz-utils zstd ; rm -rf /var/lib/apt/lists/*
2022-10-05 04:22:59 UTC/bin/sh -c set -eux; key='859BE8D7C586F538430B19C2467B942D3A79BD29'; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; mkdir -p /etc/apt/keyrings; gpg --batch --export "$key" > /etc/apt/keyrings/mysql.gpg; gpgconf --kill all; rm -rf "$GNUPGHOME"
2022-10-05 04:22:59 UTC/bin/sh -c #(nop) ENV MYSQL_MAJOR=5.7
2022-10-05 04:22:59 UTC/bin/sh -c #(nop) ENV MYSQL_VERSION=5.7.39-1debian10
2022-10-05 04:23:00 UTC/bin/sh -c echo 'deb [ signed-by=/etc/apt/keyrings/mysql.gpg ] http://repo.mysql.com/apt/debian/ buster mysql-5.7' > /etc/apt/sources.list.d/mysql.list
2022-10-05 04:23:20 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
2022-10-05 04:23:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/mysql]
2022-10-05 04:23:21 UTC/bin/sh -c #(nop) COPY file:5e84598933ec95c9918378d8dde5be8d5f80b0e1fc321a029f840f313201ebce in /usr/local/bin/
2022-10-05 04:23:21 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
2022-10-05 04:23:21 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-10-05 04:23:21 UTC/bin/sh -c #(nop) EXPOSE 3306 33060
2022-10-05 04:23:22 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.