Multi platform images on Docker Hub
Would be great to have arm/arm64 images on Docker Hub to easily run this on NAS devices or Raspberry Pis
The current Dockerfile works on armhf/arm64 devices and one can run docker build . -f Dockerfile -t dispatch to get one for themselves, though a multiplatform distribution on DockerHub would be appreciated.
I took some time out to build an image for arm64 on my home build server built on Raspberry Pi 4B.
See if this works for you https://hub.docker.com/r/t0xic0der/dispatch.
docker run \
-p {{ HTTP_PORT }}:80 \
-p {{ HTTPS_PORT }}:443 \
-v {{ DATA_DIRECTORY }}:/data \
--restart unless-stopped \
-d t0xic0der/dispatch:arm64
Thanks @t0xic0der How could we achieve this for the official repository ? Should an arm64 machine be deployed somewhere in order to have such a build available ?