[SOLVED] failed to solve with frontend dockerfile.v0: failed to create LLB definition: no match for platform in manifest sha256:XXX: not found
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:
- Go to your local docker desktop, clicked setting
- 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