[SOLVED] failed to solve with frontend dockerfile.v0: failed to create LLB definition: no match for platform in manifest sha256:XXX: not found

Lim Sing
Jul 17, 2022

I get the error when building my docker kibana container:

failed to solve with frontend dockerfile.v0: failed to create LLB definition: no match for platform in manifest sha256:XXX: not found

Solved this error by running:

  1. Go to your local docker desktop, clicked setting
  2. Click Docker Engine, set `buildkit` to false :
"features": {
"buildkit": false
},

but then hit another error:

no matching manifest for linux/arm64/v8 in the manifest list entries

solved by editing docker-compose for the container:

platform: linux/amd64

--

--