2023-01-11 06:20:57 UTC
155 MB
1.14
MYSQL_MAJOR5.7
MYSQL_VERSION5.7.40-1debian10
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[#000] sha256:548fcab5fe888f589dd092c68b813bfd65359878bd1950d6b753f749e82ebd7c - 16.69% (25.9 MB)
[#001] sha256:702e45a0d0fab46740d0cf404969001dc0537dd564973fa6f31da2a00cfe5ef8 - 0.0% (1.69 KB)
[#002] sha256:ad96d17a23a7cff619709675f8981274e6a4ff7a9fb99590f0a837511e69a50b - 2.57% (3.99 MB)
[#003] sha256:1832d5509d3dce5314c5ffb58ac35ef7e35c396457e6fab747267312751708cf - 0.85% (1.32 MB)
[#004] sha256:4d5a580bc4aa47839f3f325b0a7bd7f927d8f41bb947a8e6d1847048a16c88dc - 0.0% (148 Bytes)
[#005] sha256:562f0a131c6cc56e3a6b85245641c4251cb4bc5e5b97f08d5d97209b8c11c38c - 8.67% (13.4 MB)
[#006] sha256:5760997e25e0fd516f2aab1a32be22ae0a919faa2c2dd36a3ad098d772ca3495 - 0.0% (2.48 KB)
[#007] sha256:775fa5501cc52dee8e45da5956026c2b54705ec8e42b4b3b51d7107de9baf334 - 0.0% (250 Bytes)
[#008] sha256:aad673f9ba03fd5d6e1aa6b77fb1cb89adc2c4868d9f20141bb37de8e1154ebd - 71.21% (110 MB)
[#009] sha256:909cf3e27d40cfbf30b5b03269b2ee21163fdefa975f87cb3e2090362dabee1c - 0.0% (5.26 KB)
[#010] sha256:aeedaea07af2f1866ca791adbe8f5af0f630b67ebb004cf402131e8a2e1d4c33 - 0.0% (118 Bytes)
/bin/sh -c #(nop) ADD file:67ceb946e54c26c505b5f9f393d77befbd5e9b3b5c069ca301e314ecc74456b0 in /
2023-01-11 02:35:07 UTC/bin/sh -c #(nop) CMD ["bash"]
2023-01-11 06:20:12 UTC/bin/sh -c groupadd -r mysql && useradd -r -g mysql mysql
2023-01-11 06:20:18 UTC/bin/sh -c apt-get update && apt-get install -y --no-install-recommends gnupg dirmngr && rm -rf /var/lib/apt/lists/*
2023-01-11 06:20:18 UTC/bin/sh -c #(nop) ENV GOSU_VERSION=1.14
2023-01-11 06:20:27 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
2023-01-11 06:20:28 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-01-11 06:20:34 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/*
2023-01-11 06:20:36 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"
2023-01-11 06:20:36 UTC/bin/sh -c #(nop) ENV MYSQL_MAJOR=5.7
2023-01-11 06:20:36 UTC/bin/sh -c #(nop) ENV MYSQL_VERSION=5.7.40-1debian10
2023-01-11 06:20:36 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
2023-01-11 06:20:56 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
2023-01-11 06:20:56 UTC/bin/sh -c #(nop) VOLUME [/var/lib/mysql]
2023-01-11 06:20:56 UTC/bin/sh -c #(nop) COPY file:e9c22353a1133b89c5bca24ecacd348acd094e50e5e5c45375a997c6b1f07192 in /usr/local/bin/
2023-01-11 06:20:57 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
2023-01-11 06:20:57 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-01-11 06:20:57 UTC/bin/sh -c #(nop) EXPOSE 3306 33060
2023-01-11 06:20:57 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.