Namespace
library
Image / Tag
mysql:5.6.47
Content Digest
sha256:852b5dee257c9c23ce410b7d005f9d8f04efa9998059780cd5a358d866c53dea
Details
Created

2020-04-23 04:17:13 UTC

Size

98.1 MB

Content Digest
Environment
GOSU_VERSION

1.12

MYSQL_MAJOR

5.6

MYSQL_VERSION

5.6.47-1debian9

PATH

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


Layers

[#000] sha256:b248fa9f6d2ae427ad7f00de3537ab256ae7eb413565f8be0773ee9b86ef57d4 - 21.88% (21.5 MB)

[#001] sha256:0058702edba7456c09cc65fc8215cdb4de22e5b5619657b3429b4612e0782492 - 0.0% (1.7 KB)

[#002] sha256:84e63f6f229769b34b9dc42ef242e26827f4ef62dc068b8cfb3978896d1f400f - 4.38% (4.29 MB)

[#003] sha256:81ad333a340332086ec5356c921af17ee104cf83bc65316ebb8eba19e53baa07 - 1.37% (1.35 MB)

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

[#005] sha256:442342ef4996aa063f2752b7f40a8814f35f583fccb430f62f58087db31d6431 - 9.94% (9.75 MB)

[#006] sha256:ecf24ffdea0f6a9b3a7ec50870603c50b164d3f65730cea120f246f1421a6952 - 0.03% (27.7 KB)

[#007] sha256:a02b8b4c83b0d89fe614d24955d1fe5bde1692e29caacdf6558a7e0ea178e95e - 0.0% (223 Bytes)

[#008] sha256:7b1a4d0969f1da6a112e69c003bfbaa6cffe42a77ea2fad695dd76eedb91c460 - 62.4% (61.2 MB)

[#009] sha256:8d715f261d93c70db80a4699fad768e6c3bf49b306947440afd7176bf42e550d - 0.01% (5.03 KB)

[#010] sha256:140640d3c0e36c983a0e10500aa2a751e67a1a5c896cc9fb8a306168dc7af7fa - 0.0% (121 Bytes)


History
2020-04-23 00:23:03 UTC

/bin/sh -c #(nop) ADD file:08ea1ff3fcd4efc24ab4f262cfa24e55e65844f6858e41a46fe0635d247f174d in /

2020-04-23 00:23:03 UTC

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

2020-04-23 04:16:04 UTC

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

2020-04-23 04:16:13 UTC

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

2020-04-23 04:16:13 UTC

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

2020-04-23 04:16:29 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-04-23 04:16:30 UTC

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

2020-04-23 04:16:40 UTC

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

2020-04-23 04:16:44 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-04-23 04:16:44 UTC

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

2020-04-23 04:16:45 UTC

/bin/sh -c #(nop) ENV MYSQL_VERSION=5.6.47-1debian9

2020-04-23 04:16:46 UTC

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

2020-04-23 04:17:10 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 777 /var/run/mysqld && 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-04-23 04:17:10 UTC

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

2020-04-23 04:17:11 UTC

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

2020-04-23 04:17:12 UTC

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

2020-04-23 04:17:13 UTC

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

2020-04-23 04:17:13 UTC

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

2020-04-23 04:17:13 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