apolloconfig / apollo-quick-start

Apollo Quick Start
691 stars 1.85k forks source link

image with reference nobodyiam/apollo-quick-start was found but does not match the specified platform: wanted linux/arm64, actual: linux/amd64 #97

Closed dachengxu closed 1 year ago

dachengxu commented 1 year ago

Apple M1 docker 方式启动失败

` ▶ docker-compose -f docker-compose-arm64.yml up

[+] Running 0/0

⠋ Container apollo-quick-start Creating

Error response from daemon: image with reference nobodyiam/apollo-quick-start was found but does not match the specified platform: wanted linux/arm64, actual: linux/amd64

`

nobodyiam commented 1 year ago

The docker image has been updated with both amd64 and arm64 support. You may update your local cache or specify the tag to 2.1.0 directly.

services:
  apollo-quick-start:
    platform: linux/arm64
    image: nobodyiam/apollo-quick-start:2.1.0
    container_name: apollo-quick-start

image

dachengxu commented 1 year ago

It works, Thanks!