Overview
Docker container for the popular download utility aria2.
Usage
Work dir is set to /aria2 for easy mounting to the host.
docker run -v $(pwd):/aria2 -it mtps/aria2 <aria-args...>
Dockerfile
FROM alpine
RUN apk --update add --no-cache aria2
WORKDIR "/aria2"
ENTRYPOINT ["/usr/bin/aria2c"]