aria2-with-webui icon indicating copy to clipboard operation
aria2-with-webui copied to clipboard

armhf support?

Open PolarizedIons opened this issue 6 years ago • 2 comments

Hi, would it be possible to build and publish this to the docker repos with armhf support? Would love to be able to run this on my raspberry pi zero.

Thank you

PolarizedIons avatar Feb 10 '19 10:02 PolarizedIons

Try this:https://github.com/benzBrake/Docker-Aria2-Busybox/blob/master/Dockerfile.aarch ? I'm not sure if it can work

benzBrake avatar Mar 31 '19 02:03 benzBrake

pi@virgil:~/build/aria2 $ docker build -t aria2-armhf -f Dockerfile.aarch .
Sending build context to Docker daemon  10.57MB
Step 1/7 : FROM busybox
 ---> 076f0534356f
Step 2/7 : MAINTAINER Ryan Lieu <[email protected]>
 ---> Using cache
 ---> dbd363ad617b
Step 3/7 : ADD ["index.html", "aria2.conf", "entrypoint.sh", "/data/"]
 ---> 821891ad240a
Step 4/7 : RUN CURL_LINK="https://github.com$(wget -q -O - https://github.com/q3aql/aria2-static-builds/releases/latest | grep "aria2-.*-linux-gnu-arm-rbpi-build1.tar.bz2" | grep "<a" | awk -F '"' '{print $2}')" &&     wget ${CURL_LINK} &&     bzip2 -d aria2*.bz2 &&     tar xf aria2*.tar &&     rm -rf aria2*.tar &&     mkdir -p /etc/ssl/certs/ /data/aria2/html /data/aria2/downloads &&     cd aria2* &&     cp ca-certificates.crt /etc/ssl/certs/ &&     cp aria2c /bin &&     rm -rf /aria2-.*-linux-gnu-arm-rbpi-build1
 ---> Running in a77a20a5d61f
The command '/bin/sh -c CURL_LINK="https://github.com$(wget -q -O - https://github.com/q3aql/aria2-static-builds/releases/latest | grep "aria2-.*-linux-gnu-arm-rbpi-build1.tar.bz2" | grep "<a" | awk -F '"' '{print $2}')" &&     wget ${CURL_LINK} &&     bzip2 -d aria2*.bz2 &&     tar xf aria2*.tar &&     rm -rf aria2*.tar &&     mkdir -p /etc/ssl/certs/ /data/aria2/html /data/aria2/downloads &&     cd aria2* &&     cp ca-certificates.crt /etc/ssl/certs/ &&     cp aria2c /bin &&     rm -rf /aria2-.*-linux-gnu-arm-rbpi-build1' returned a non-zero code: 139
pi@virgil:~/build/aria2 $ 

PolarizedIons avatar Apr 01 '19 14:04 PolarizedIons