Looking at the Redis image, https://hub.docker.com/_/redis, it says that it supports Arm64. However when I run the image on a Mac M1, it shows an AMD64
warning badge (i.e. poor performance due to Rosetta emulation)
How do I specify the ARM64 version of redis?
Here's the Dockerfile:
FROM redis:alpine
WORKDIR /usr/app
COPY conf/redis.conf /usr/local/etc/redis/redis.conf
EXPOSE 6379
I'm running this on an M1 Mac.
docker-compose
(if I've understood your question correctly). – Phylloquinone