Namespace
library
Image / Tag
mysql:5.6.36
Content Digest
sha256:55cbc591a7ebc1c47458c97b8edbd2693c9e4ec5666f1ad8202a86a2e639e326
Details
Created

2017-06-23 00:46:38 UTC

Size

100 MB

Content Digest
Environment
GOSU_VERSION

1.7

MYSQL_MAJOR

5.6

MYSQL_VERSION

5.6.36-1debian8

PATH

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


Layers

[#000] sha256:9f0706ba7422412cd468804fee456786f88bed94bf9aea6dde2a47f770d19d27 - 50.18% (50.2 MB)

[#001] sha256:2290e155d2d0e9a4665a3a3fe112e227034275f6e6ea237122a695dbea5a8861 - 0.0% (2.02 KB)

[#002] sha256:547981b8269f9a3f6be6941c644aa592f59a77e764e0962cacae67e0c6159586 - 1.24% (1.24 MB)

[#003] sha256:2c9d42ed2f48a29a67c7ce9a017f1b14fabb57f9b7193dd51d39675132b7acc3 - 0.0% (115 Bytes)

[#004] sha256:a50168a1b927e4724cd8fd9805938d8b16e61ccf6f87cf1266e85934c5128b6a - 7.87% (7.87 MB)

[#005] sha256:414da6fabf18cf1cb8c83d70e746abe6b504186ec2cfa39cbef3d7f32ffc40c1 - 0.02% (18.8 KB)

[#006] sha256:332ddcfaeff45660ffd7666ee148b56b4ca804aa8891dae929a2df8e1774703d - 0.0% (217 Bytes)

[#007] sha256:43e9a87d0a54af42f9bffaceaca66341a5a5dfa6132f4373b678cd172d0cb5d4 - 40.67% (40.7 MB)

[#008] sha256:27dcfa818ff78e8c1af530fa1c82f97b491b3cff18666ee7bdc89f01ac566596 - 0.0% (853 Bytes)

[#009] sha256:067b6cd0ea1c6a0bdeebe205bf7ce062e2fe66a3eac5da75bf8ddf3faf583539 - 0.0% (2.53 KB)

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


History
2017-06-20 20:13:32 UTC

/bin/sh -c #(nop) ADD file:9c48682ff75c756544d4491472081a078edf5dd0bb5038d1cb850a1f9c480e3e in /

2017-06-20 20:13:34 UTC

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

2017-06-23 00:26:49 UTC

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

2017-06-23 00:26:50 UTC

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

2017-06-23 00:27:08 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 && rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2017-06-23 00:27:10 UTC

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

2017-06-23 00:46:03 UTC

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

2017-06-23 00:46:07 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; rm -r "$GNUPGHOME"; apt-key list > /dev/null

2017-06-23 00:46:07 UTC

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

2017-06-23 00:46:08 UTC

/bin/sh -c #(nop) ENV MYSQL_VERSION=5.6.36-1debian8

2017-06-23 00:46:10 UTC

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

2017-06-23 00:46:30 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

2017-06-23 00:46:32 UTC

/bin/sh -c sed -Ei 's/^(bind-address|log)/#&/' /etc/mysql/my.cnf && echo '[mysqld]\nskip-host-cache\nskip-name-resolve' > /etc/mysql/conf.d/docker.cnf

2017-06-23 00:46:32 UTC

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

2017-06-23 00:46:34 UTC

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

2017-06-23 00:46:35 UTC

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

2017-06-23 00:46:36 UTC

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

2017-06-23 00:46:37 UTC

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

2017-06-23 00:46:38 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