Raspberries come in use docker deployment aria2, minidlna

Aria2 is currently installed with minidlna tutorial can be found to basically come in raspberry direct apt-get install to install. Now is the era of the docker, in fact, two things can be used directly docker run up and running. What is the problem you can delete very refreshing.

Install aria2

docker run -d   --name aria2-pro   --restart unless-stopped   --log-opt max-size=1m   -e PUID=$UID   -e PGID=$GID   -e RPC_SECRET=<TOKEN>   -p 6800:6800   -p 6888:6888   -p 6888:6888/udp   -v ~/aria2-config:/config   -v ~/downloads:/downloads   p3terx/aria2-pro

Installation minidlna

docker run -d --name minidlna -d --net host -v /home/pi:/mymedia -e "MINIDLNA_MEDIA_DIR=V,/mymedia" -e "MINIDLNA_FRIENDLY_NAME=PI DLNA SERVER" -e "MINIDLNA_ROOT_CONTAINER=B" fmartingr/minidlna-arm

Guess you like

Origin www.cnblogs.com/kklldog/p/12381339.html