I want to save some resources on my now very very old MacBook Pro. So I am going to use a raspberry pi 2 model b to run some of my docker containers.
Get the RaspberryPI imager
Select other general purpuse OS -> Ubuntu -> One that supports RPi2mB

ssh pi@raspberrypidev.local
sudo apt-get update && sudo apt-get upgrade
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker pi
exit
Create link to your docker server
docker context create remote --docker "host=ssh://pi@raspberrypidev.local"
docker context use remote
MySQL
To use MySQL containers, you have to specify the platform to –platform=linux/arm64 in your docker-compose file.
