Namespace
library
Image / Tag
mysql:5.7.24
Content Digest
sha256:bf17a7109057494c45fba5aab7fc805ca00ac1eef638dfdd42b38d5a7190c9bb
Details
Created

2018-12-29 02:22:05 UTC

Size

118 MB

Content Digest
Environment
GOSU_VERSION

1.7

MYSQL_MAJOR

5.7

MYSQL_VERSION

5.7.24-1debian9

PATH

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


Layers

[#000] sha256:177e7ef0df6987e0c5738a1fb5aba98b6b6e7a5fef992e481977dbb5ba3f91be - 18.14% (21.5 MB)

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

[#002] sha256:8585afabb40aa039890e2d6d46924717edd508633ac28db8112ac48b8ba824fc - 3.63% (4.29 MB)

[#003] sha256:1e4af4996053e1ce2e35b6523fb556be222d137b86efe4bf306b9a2bd895f98c - 1.02% (1.21 MB)

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

[#005] sha256:9020d6b6b1714fbfe1be15a8e508da2388bb5d2ecb625603bb2f3806c840af02 - 9.77% (11.5 MB)

[#006] sha256:55eb37ec6e5f8c6ec36d8ffe75e06f398f79d49f491f14e1596ed51f20c3ce77 - 0.02% (24.6 KB)

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

[#008] sha256:d7e648ad64aa7fc69805c62b1b656c8717d204a02f877f9aff3d1ecf3d3f186d - 67.41% (79.7 MB)

[#009] sha256:4120d828ea6b1e9400b3b715c25b3d9a9f44cbaa90441aefb6b297d8f8430705 - 0.0% (2.81 KB)

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


History
2018-12-28 23:30:06 UTC

/bin/sh -c #(nop) ADD file:6d6f6f123e45697d3e73ea24621e4fd8da0ed5cf7504767f6b3120671fe6e7d1 in /

2018-12-28 23:30:06 UTC

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

2018-12-29 02:20:23 UTC

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

2018-12-29 02:20:32 UTC

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

2018-12-29 02:20:32 UTC

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

2018-12-29 02:20:49 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

2018-12-29 02:20:50 UTC

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

2018-12-29 02:20:59 UTC

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

2018-12-29 02:21:03 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

2018-12-29 02:21:36 UTC

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

2018-12-29 02:21:37 UTC

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

2018-12-29 02:21:38 UTC

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

2018-12-29 02:22:03 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-12-29 02:22:04 UTC

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

2018-12-29 02:22:04 UTC

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

2018-12-29 02:22:05 UTC

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

2018-12-29 02:22:05 UTC

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

2018-12-29 02:22:05 UTC

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

2018-12-29 02:22:05 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