Here are the instructions to install Docker Desktop on Apple Silicon (ARM 64 processor, like Mac Studio, M1 Max). The demo will be part of Getting Started with Concourse CI, a course that will be released on Pluralsight in the next 3 to 5 weeks. See module 3 and find the clip for installing Concourse - the Docker installation will be part of it. Anyhow, here are the commands that you can put in a script, make it executable and run it. Optionally, before you run it, uncomment the commands that move the .dmg file to the trash. I've also included the the "uninstall" command.
wget https://desktop.docker.com/mac/main/arm64/Docker.dmg
sudo hdiutil attach Docker.dmg
sudo /Volumes/Docker/Docker.app/Contents/MacOS/install
sudo hdiutil detach /Volumes/Docker
### Move Docker.dmg to the recycle bin
# trash Docker.dmg
### Empty the trash
# trash -e
### Uninstall Docker
# /Applications/Docker.app/Contents/MacOS/uninstall
# trash /Applications/Docker.app