dispatch icon indicating copy to clipboard operation
dispatch copied to clipboard

Multi platform images on Docker Hub

Open felixse opened this issue 4 years ago • 3 comments

Would be great to have arm/arm64 images on Docker Hub to easily run this on NAS devices or Raspberry Pis

felixse avatar Mar 14 '21 11:03 felixse

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.

gridhead avatar May 30 '21 16:05 gridhead

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

gridhead avatar May 30 '21 17:05 gridhead

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 ?

daftaupe avatar Jan 14 '22 14:01 daftaupe