Namespace
library
Image / Tag
mysql:5.7.26
Content Digest
sha256:bdee7a98276ccf377d2c00b8ceaa9f65455a9376481467bbcc3d1e6b662dac5d
Details
Created

2019-07-17 22:08:58 UTC

Size

118 MB

Content Digest
Environment
GOSU_VERSION

1.7

MYSQL_MAJOR

5.7

MYSQL_VERSION

5.7.26-1debian9

PATH

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


Layers

[#000] sha256:0a4690c5d889e116874bf45dc757b515565a3bd9b0f6c04054d62280bb4f4ecf - 18.12% (21.4 MB)

[#001] sha256:98aa2fc6cbebccfacb58760fbb91c528114848559a6ca019c1b50ee62573861f - 0.0% (1.71 KB)

[#002] sha256:0777e6eb0e6ff56bf816af668828e63a39ba945a5ea512bc1cf2d160e47810e2 - 3.63% (4.29 MB)

[#003] sha256:2464189c041cb5cf939f0167de273268261d33c40a834ad2984dda198f554152 - 1.02% (1.21 MB)

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

[#005] sha256:b42b000861608f85dfe0a0d46a080f39cb4b5ec1927e7dbb396800cfb545f91e - 9.75% (11.5 MB)

[#006] sha256:bb93567627c7fbbaf25357611207a87ea703a0078c75c7c52a3bf34b00f752d8 - 0.02% (25.5 KB)

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

[#008] sha256:6257d2da481519f2a50ca920a303a63663bef5eed37a529d26559909aed62c82 - 67.46% (79.9 MB)

[#009] sha256:1cd5ed3b2653b8e69b2d5244a06ab459aa35b9da1b11248a4d699c44112a8415 - 0.0% (2.81 KB)

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


History
2019-07-09 21:32:29 UTC

/bin/sh -c #(nop) ADD file:966bd7368f1e5a3e40fe5fab63ebe3c04719f677cc49385462e4dfda4c4096fb in /

2019-07-09 21:32:29 UTC

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

2019-07-17 22:07:47 UTC

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

2019-07-17 22:07:53 UTC

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

2019-07-17 22:07:53 UTC

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

2019-07-17 22:08:04 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-07-17 22:08:05 UTC

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

2019-07-17 22:08:11 UTC

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

2019-07-17 22:08:14 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-07-17 22:08:39 UTC

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

2019-07-17 22:08:39 UTC

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

2019-07-17 22:08:39 UTC

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

2019-07-17 22:08:56 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-07-17 22:08:57 UTC

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

2019-07-17 22:08:57 UTC

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

2019-07-17 22:08:57 UTC

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

2019-07-17 22:08:58 UTC

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

2019-07-17 22:08:58 UTC

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

2019-07-17 22:08:58 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