Namespace
library
Image / Tag
mysql:5.6.40
Content Digest
sha256:4902cd80486dca889205576a698a3e6534376ef6d8b94ef9fc9c61e891f1cd15
Details
Created

2018-07-27 01:16:13 UTC

Size

78.8 MB

Content Digest
Environment
GOSU_VERSION

1.7

MYSQL_MAJOR

5.6

MYSQL_VERSION

5.6.40-1debian9

PATH

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


Layers

[#000] sha256:be8881be8156e4068e611fe956aba2b9593ebd953be14fb7feea6d0659aa3abe - 27.2% (21.4 MB)

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

[#002] sha256:9931fdda3586a52049081bc78fa9793476662310356127cc8baa52e38bb34a8d - 5.44% (4.29 MB)

[#003] sha256:bb1b6b6eff6a5d6f46d3e40876d993f3c092fb55d01d6f81dc9e45887e6ac961 - 1.54% (1.21 MB)

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

[#005] sha256:62fa8db7a5dc70ffaffa9a1d07f153f2fc4e7cc880eeb494cf62caa88d7da357 - 12.3% (9.7 MB)

[#006] sha256:ea8988c5d95142a42a6948a55cd218f25c49284d52e2bffbd871ff3e410dc356 - 0.03% (22.1 KB)

[#007] sha256:a14d3607989258561f39d7ddfe9c5bb2ee582e8b71e8805b88370f2e0ea96a9b - 0.0% (224 Bytes)

[#008] sha256:ae927d273de43150bcf84fabfc7ad593c2e1a31b3e11ad2bf25770bff85f267a - 53.48% (42.2 MB)

[#009] sha256:7cd17abd57c5cbe45285d53ca2c28f9e7d41c4140d08f5b086114d5dc51318be - 0.0% (2.78 KB)

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


History
2018-07-17 00:28:04 UTC

/bin/sh -c #(nop) ADD file:919939fa022472751b717443eea9f1d7ab5c0723f1f3a6b776d3b83d22bde818 in /

2018-07-17 00:28:04 UTC

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

2018-07-17 04:16:08 UTC

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

2018-07-17 04:16:21 UTC

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

2018-07-17 04:16:21 UTC

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

2018-07-27 01:12:40 UTC

/bin/sh -c set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --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 && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2018-07-27 01:12:48 UTC

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

2018-07-27 01:15:30 UTC

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

2018-07-27 01:15:33 UTC

/bin/sh -c set -ex; key='A4A9406876FCBD3C456770C88C718D3B5072E1F5'; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; gpg --export "$key" > /etc/apt/trusted.gpg.d/mysql.gpg; gpgconf --kill all; rm -rf "$GNUPGHOME"; apt-key list > /dev/null

2018-07-27 01:15:33 UTC

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

2018-07-27 01:15:33 UTC

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

2018-07-27 01:15:34 UTC

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

2018-07-27 01:15:55 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

2018-07-27 01:15:56 UTC

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

2018-07-27 01:15:56 UTC

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

2018-07-27 01:15:57 UTC

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

2018-07-27 01:16:12 UTC

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

2018-07-27 01:16:12 UTC

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

2018-07-27 01:16: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