Namespace
library
Image / Tag
mysql:5.7.31
Content Digest
sha256:b3dc8d10307ab7b9ca1a7981b1601a67e176408be618fc4216d137be37dae10b
Details
Created

2020-10-13 08:03:45 UTC

Size

147 MB

Content Digest
Environment
GOSU_VERSION

1.12

MYSQL_MAJOR

5.7

MYSQL_VERSION

5.7.31-1debian10

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


Layers

[#000] sha256:bb79b6b2107fea8e8a47133a660b78e3a546998fcf0427be39ac9a0af4a97e90 - 17.54% (25.8 MB)

[#001] sha256:49e22f6fb9f7713028f8ed9b0beaa2ebac38d73ff6fd60532031e4a257f314c0 - 0.0% (1.7 KB)

[#002] sha256:842b1255668c99365efe9cf8367baf458ad590033cfbe73c03e67a961d34a288 - 2.7% (3.98 MB)

[#003] sha256:9f48d1f430002d35f5766b2ba9cfbe0c624a705a542622a94e5b86e2132aba7b - 0.92% (1.35 MB)

[#004] sha256:c693f0615bcee7154070df04d6cce10562437d69ee98d469252e950cd79e0d7f - 0.0% (115 Bytes)

[#005] sha256:8a621b9dbed2309be1806a0a750a6deef7c2558f25ceee4fcfc06ec421fad097 - 8.71% (12.8 MB)

[#006] sha256:0807d32aef130f157419493647a5b252b6560b5385f14f102f388e576aeb1e98 - 0.0% (2.34 KB)

[#007] sha256:6d2fc69dfa35df3eb1099501d90a60c477cc59bb043350815faa61273f30ebb2 - 0.0% (225 Bytes)

[#008] sha256:56153548dd2c828e151b54d5dee6bc184254767aac1753e4f176a72ef098fccc - 70.13% (103 MB)

[#009] sha256:3bb6ba94030303d9e95c4d436e78295a17912542c3d539116efe436678d90684 - 0.0% (5.02 KB)

[#010] sha256:3e1888da91a7bfdd32ba485e7f82bec46eae19896901cc433c8203d8927087fb - 0.0% (121 Bytes)


History
2020-10-13 01:39:05 UTC

/bin/sh -c #(nop) ADD file:0dc53e7886c35bc21ae6c4f6cedda54d56ae9c9e9cd367678f1a72e68b3c43d4 in /

2020-10-13 01:39:05 UTC

/bin/sh -c #(nop) CMD ["bash"]

2020-10-13 08:01:49 UTC

/bin/sh -c groupadd -r mysql && useradd -r -g mysql mysql

2020-10-13 08:01:59 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends gnupg dirmngr && rm -rf /var/lib/apt/lists/*

2020-10-13 08:01:59 UTC

/bin/sh -c #(nop) ENV GOSU_VERSION=1.12

2020-10-13 08:02:13 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-10-13 08:02:14 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2020-10-13 08:02:26 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends pwgen openssl perl xz-utils && rm -rf /var/lib/apt/lists/*

2020-10-13 08:02:28 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-10-13 08:03:07 UTC

/bin/sh -c #(nop) ENV MYSQL_MAJOR=5.7

2020-10-13 08:03:07 UTC

/bin/sh -c #(nop) ENV MYSQL_VERSION=5.7.31-1debian10

2020-10-13 08:03:08 UTC

/bin/sh -c echo "deb http://repo.mysql.com/apt/debian/ buster mysql-${MYSQL_MAJOR}" > /etc/apt/sources.list.d/mysql.list

2020-10-13 08:03:42 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 1777 /var/run/mysqld /var/lib/mysql && 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-10-13 08:03:42 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/mysql]

2020-10-13 08:03:43 UTC

/bin/sh -c #(nop) COPY file:7cbb26bbdb8e71b36aafda38dbac08caa641714a19991b86cde77daf3286ec11 in /usr/local/bin/

2020-10-13 08:03:44 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat

2020-10-13 08:03:44 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2020-10-13 08:03:45 UTC

/bin/sh -c #(nop) EXPOSE 3306 33060

2020-10-13 08:03:45 UTC

/bin/sh -c #(nop) CMD ["mysqld"]

Danger Zone
Delete Tag

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.

Delete