I have a docker-compose file in which one of the services is Debezium: https://hub.docker.com/r/debezium/connect. On docker hub it is mentioned that it supports Linux arm 64(screenshot attached) but when I run the docker compose file I get the message:The requested image’s platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested.
Solutions tried:
- Included --platform: linux/arm64 in docker compose file
- Tried : export DOCKER_DEFAULT_PLATFORM=linux/arm64
But still it pulls the image for linux/amd64 only. What should I do?