From f6cdeabe2f57b97299308e16486958ed122315b9 Mon Sep 17 00:00:00 2001 From: hc Date: Sat, 7 Feb 2026 12:15:01 +0000 Subject: initial commit --- docs | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 docs (limited to 'docs') diff --git a/docs b/docs new file mode 100644 index 0000000..42baa53 --- /dev/null +++ b/docs @@ -0,0 +1,35 @@ +## Setup + +Both must use --in-pod=false so the torrent container can attach to the VPN container's network. +Downloads appear in /root/downloads on the host. + + cd /root/mullvad-docker && podman compose --in-pod=false up -d + cd /root/mullvad-docker/torrent && podman compose --in-pod=false up -d + +## Shell into container + + podman exec -it torrent bash + +## aria2p commands + + # Add downloads + aria2p add "magnet:?xt=urn:btih:..." + aria2p add "https://example.com/file.zip" + aria2p add /path/to/file.torrent + + # Monitor + aria2p show # list all downloads + aria2p top # live TUI + + # Control + aria2p pause # pause one + aria2p resume # resume one + aria2p remove # remove one + aria2p pause-all + aria2p resume-all + + # Cleanup + aria2p purge # clear completed/errored from list + +GID is the hex ID from aria2p show. + -- cgit