WARNING: The requested image's platform (linux/amd64) does not match the detected host platform

Hi there,
i have a raspi 3+ running and want to run the latest pihole on docker - everything is working, but i am curious about the warning (see below):

[root@pi3 ~]# uname -a
Linux pi3 5.10.1-v8+ #1383 SMP PREEMPT Fri Dec 18 19:10:13 GMT 2020 aarch64 GNU/Linux

[root@pi3 ~]# docker version
Client: Docker Engine - Community
 Version:           20.10.1
 API version:       1.41
 Go version:        go1.13.15
 Git commit:        831ebea
 Built:             Tue Dec 15 04:35:27 2020
 OS/Arch:           linux/arm
[root@pi3 ~]# docker images
REPOSITORY      TAG       IMAGE ID       CREATED        SIZE
pihole/pihole   latest    31367245f483   24 hours ago   384M

But

When i start the pihole image in this way ...

docker run -d --name pihole \
  --privileged=true \
  --net=host \
  -e TZ=Europe/Berlin \
  -e ServerIP=192.168.0.13 \
  -e DNSMASQ_LISTENING=all \
  -e WEB_PORT=8181 \
  -e WEBPASSWORD=XXXXXXXXXXXXXXXXXX \
  -e DNS1=192.168.0.1#5453 \
  -e DNS2=no \
  -v /ph-data/pihole/:/etc/pihole/ \
  -v /ph-data/dnsmasq.d/:/etc/dnsmasq.d/ \
  --restart=unless-stopped \
  pihole/pihole:latest

.... i get this warning:

WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm/v7) and no specific platform was requested

A i interprete the tags, the latest-Image should be comatible:
https://hub.docker.com/layers/pihole/pihole/latest/images/sha256-eb4f2f22b8f1d7464bca2aa7f7a54f4212ca1d57c2a79d04a645d30710dcae32?context=explore

So, how to get rid of the warning?

Regards,
Andreas

Thank you very much!

Rolled back to official ...

docker.io (18.09.1+dfsg1-7.1+deb10u2)

The warning disappeared ...

hi Abyss02 what was the solution? i have the same issue but doing this on a mac mini, what do you mean by saying rolled back to official?