Is there an ARM 64 version of this? #10
Replies: 3 comments 19 replies
-
|
The build process is pretty long and needs quite a bit of Computational power. You want a docker image with arm64 compatibility? |
Beta Was this translation helpful? Give feedback.
-
|
Hey! Just wanted to share what I did to get the latest version running on a Raspberry Pi 5 (aarch64/arm64) without waiting for the Pi to build it. Build time was 10 mins What I did (build on M1 Mac → transfer → run on Pi)1) Build the image on my M1 Mac for ARM64 git clone https://github.com/arpanghosh8453/dji-logbook
cd dji-logbook
docker buildx build \
--platform linux/arm64 \
-t dji-logbook:pi \
--load \
.2) Export the image to a compressed tarball docker save dji-logbook:pi | gzip > dji-logbook_pi_arm64.tar.gz3) Upload to the Pi 4) Load the image into Docker on the Pi 5) Run the container docker volume create dji-data
docker run -d \
-p 8080:80 \
-v dji-data:/data/dji-logviewer \
--name dji-logbook \
dji-logbook:piThen I could access it at: Sharing / distributing ARM64 image That said, is there a preferred way you’d like ARM64 images distributed going forward? |
Beta Was this translation helpful? Give feedback.
-
|
Hey @arpanghosh8453 , I had the same thought as @LachlanDev and I compiled the code on my Mac. Worked perfect TY Really nice work! |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to run this on a Pi in a docker container, but my Pi is a 64bit architecture. I've tried running the build yml, but it seems to time out after ~1 hour. I am by no means an expert here so if there is a process I should be following please feel free to point me in that direction.
Beta Was this translation helpful? Give feedback.
All reactions