Namespace
library
Image / Tag
mysql:5.6.43
Content Digest
sha256:de2913a0ec53d98ced6f6bd607f487b7ad8fe8d2a86e2128308ebf4be2f92667
Details
Created

2019-03-26 23:43:24 UTC

Size

78.9 MB

Content Digest
Environment
GOSU_VERSION

1.7

MYSQL_MAJOR

5.6

MYSQL_VERSION

5.6.43-1debian9

PATH

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


Layers

[#000] sha256:27833a3ba0a545deda33bb01eaf95a14d05d43bf30bce9267d92d17f069fe897 - 27.2% (21.5 MB)

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

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

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

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

[#005] sha256:688342d0934f8e0ceaf1e39bbf510ea4bf05e0a76ffa46ef71fc25ff2aff3461 - 12.3% (9.7 MB)

[#006] sha256:1f90d01880662732cc3ac231648f3bb4b585747328549cf1927380e2be8f57f9 - 0.03% (25.5 KB)

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

[#008] sha256:12062e921a9054c8207ce188dd83a573744f215585e7bdc109344b343d35e492 - 53.49% (42.2 MB)

[#009] sha256:066ae780ca9a4ff81579dc1f3708a5465ee7d99e79a2cdaff6e714c05cb43a06 - 0.0% (2.79 KB)

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


History
2019-03-26 22:41:26 UTC

/bin/sh -c #(nop) ADD file:4fc310c0cb879c876c5c0f571af665a0d24d36cb9263e0f53b0cda2f7e4b1844 in /

2019-03-26 22:41:26 UTC

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

2019-03-26 23:41:08 UTC

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

2019-03-26 23:41:15 UTC

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

2019-03-26 23:41:16 UTC

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

2019-03-26 23:41:27 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 --batch --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

2019-03-26 23:41:28 UTC

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

2019-03-26 23:42:54 UTC

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

2019-03-26 23:42:58 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

2019-03-26 23:42:59 UTC

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

2019-03-26 23:42:59 UTC

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

2019-03-26 23:43:01 UTC

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

2019-03-26 23:43:20 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

2019-03-26 23:43:21 UTC

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

2019-03-26 23:43:21 UTC

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

2019-03-26 23:43:23 UTC

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

2019-03-26 23:43:23 UTC

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

2019-03-26 23:43:24 UTC

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

2019-03-26 23:43:24 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