我用的是mac,在docker拉取mysql镜像时遇到如下问题:
# 10018318 @ Mrli in ~ [15:34:03]
$ docker pull mysql:5.7.19
5.7.19: Pulling from library/mysql
5.7.19: Pulling from library/mysql
no matching manifest for linux/arm64/v8 in the manifest list entries
# 10018318 @ Mrli in ~ [15:34:14] C:1
$ docker pull mysql
Using default tag: latest
latest: Pulling from library/mysql
latest: Pulling from library/mysql
no matching manifest for linux/arm64/v8 in the manifest list entries
最终换成如下命令拉取解决:docker pull --platform linux/x86_64 mysql
# 10018318 @ Mrli in ~ [15:35:12] C:1
$ docker pull --platform linux/x86_64 mysql
Using default tag: latest
latest: Pulling from library/mysql
ffbb094f4f9e: Pull complete
df186527fc46: Pull complete
fa362a6aa7bd: Pull complete
5af7cb1a200e: Pull complete
949da226cc6d: Pull complete
bce007079ee9: Pull complete
eab9f076e5a3: Pull complete
8a57a7529e8d: Pull complete
b1ccc6ed6fc7: Pull complete
b4af75e64169: Pull complete
3aed6a9cd681: Pull complete
23390142f76f: Pull complete
Digest: sha256:ff9a288d1ecf4397967989b5d1ec269f7d9042a46fc8bc2c3ae35458c1a26727
Status: Downloaded newer image for mysql:latest
docker.io/library/mysql:latest
版权声明:本文为qq_41216743原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。