amule的反吸血版本项目地址
This Dockerfile is only for x86_64 architecture only. If you're interested in ARM port, have a look at this fork
Create needed directories with
mkdir -p ./amule/conf
mkdir -p ./amule/tmp
mkdir -p ./amule/incoming
Just run the container with the following command lines (replace brackets with the values you want to use) :
If you don't have any existing amule configuration, you can specify a custom password for GUI and / or WebUI using adequate environment variables.
docker run -p 4712:4712 -p 4662:4662 -p 4672:4672/udp \
-e PUID=[wanted_uid] -e PGID=[wanted_gid] \
-e GUI_PWD=[wanted_password_for_gui] \
-v ./amule/conf:/home/amule/.aMule -v ./amule/incoming:/incoming -v ./amule/tmp:/temp auska/amule-dlp
docker run -p 4711:4711 -p 4662:4662 -p 4672:4672/udp \
-e PUID=[wanted_uid] -e PGID=[wanted_gid] \
-e WEBUI_PWD=[wanted_password_for_web_interface] \
-v ./amule/conf:/home/amule/.aMule -v ./amule/incoming:/incoming -v ./amule/tmp:/temp auska/amule-dlp
Just mount existing directory as a volume :
docker run -p 4711:4711 -p 4662:4662 -p 4672:4672/udp \
-e PUID=[wanted_uid] -e PGID=[wanted_gid] \
-v ~/.aMule:/home/amule/.aMule -v ~/.aMule/Incoming:/incoming -v ~/.aMule/Temp:/temp auska/amule-dlp
Then point your browser to http://localhost:4711
If you don't like default amule web ui, you can switch to this nice bootstrap based web theme by setting the environment variable WEBUI_TEMPLATE to AmuleWebUI-Reloaded
Example :
docker run -p 4711:4711 -p 4662:4662 -p 4672:4672/udp \
-e PUID=[wanted_uid] \
-e PGID=[wanted_gid] \
-e WEBUI_TEMPLATE=AmuleWebUI-Reloaded \
-v ~/.aMule:/home/amule/.aMule \
-v ~/.aMule/Incoming:/incoming \
-v ~/.aMule/Temp:/temp auska/amule-dlp
Content type
Image
Digest
Size
26.6 MB
Last updated
over 5 years ago
docker pull auska/amule-dlp