2022-07-12 01:51:26 UTC
155 MB
1.14
MYSQL_MAJOR5.7
MYSQL_VERSION5.7.38-1debian10
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[#000] sha256:ac2fb615420c18b61e0693f2569a3d38e3b9b58456b691bac44405e08389a591 - 16.7% (25.9 MB)
[#001] sha256:c67721b86bd696950ee55207c50a132ffea3fd315ce65340a9364aa2b0a28b71 - 0.0% (1.69 KB)
[#002] sha256:8a459e3867bf64a340f900e39d7bcaa2e41acc1a1bbf6534a5f808dc821c198d - 2.57% (3.99 MB)
[#003] sha256:4146b33aaf1f61e1e653cc708bd8aca2aba92bc9de0ed003536be939c133e815 - 0.85% (1.32 MB)
[#004] sha256:01dc4ff4603c80ddf6552e8a571530056427fcadc9eeda2864926afb0bcfb04c - 0.0% (149 Bytes)
[#005] sha256:7eae6e50dbb1b5a2203bce53487d118136572c3b462597c0c55400cad43cf359 - 8.67% (13.4 MB)
[#006] sha256:ba7a8db4d7e220d8a84874391bc45a74f1482d62ffd0ba285904d5d0280ba290 - 0.0% (2.49 KB)
[#007] sha256:54cbb2253505e560148ca1bd7a17143efba2418fbbc1972bd42772a826d62b91 - 0.0% (249 Bytes)
[#008] sha256:2fa6b64c13ff24c36e9041128849079e53c4b4a69b686608b93076c32fa27198 - 71.19% (110 MB)
[#009] sha256:29961c6b0e8435d5d91d49f4fae0b47a965f2ee658312354feb91dfe8f63a51e - 0.0% (5.03 KB)
[#010] sha256:b9a7e69ecd8e754a1cd222382eedd50b0d31d8f1a3aded65f478093be9f424ad - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:7f2320197e75c5169402827ce0c47d93629331875d76b9f0ddd389244747eccd in /
2022-07-12 01:20:33 UTC/bin/sh -c #(nop) CMD ["bash"]
2022-07-12 01:50:41 UTC/bin/sh -c groupadd -r mysql && useradd -r -g mysql mysql
2022-07-12 01:50:48 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends gnupg dirmngr && rm -rf /var/lib/apt/lists/*
2022-07-12 01:50:48 UTC/bin/sh -c #(nop) ENV GOSU_VERSION=1.14
2022-07-12 01:50:57 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-07-12 01:50:57 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-07-12 01:51:04 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-07-12 01:51:05 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-07-12 01:51:05 UTC/bin/sh -c #(nop) ENV MYSQL_MAJOR=5.7
2022-07-12 01:51:05 UTC/bin/sh -c #(nop) ENV MYSQL_VERSION=5.7.38-1debian10
2022-07-12 01:51:06 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-07-12 01:51:24 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-07-12 01:51:25 UTC/bin/sh -c #(nop) VOLUME [/var/lib/mysql]
2022-07-12 01:51:25 UTC/bin/sh -c #(nop) COPY file:d27cf504fa76fb5a4038020a01eaaf52723b17b751566119de311adacb043752 in /usr/local/bin/
2022-07-12 01:51:26 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
2022-07-12 01:51:26 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-07-12 01:51:26 UTC/bin/sh -c #(nop) EXPOSE 3306 33060
2022-07-12 01:51:26 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.