https://github.com/thomasleveil/docker-aria2seeder
docker image to easily seed a torrent file
https://github.com/thomasleveil/docker-aria2seeder
docker-image torrent
Last synced: 2 months ago
JSON representation
docker image to easily seed a torrent file
- Host: GitHub
- URL: https://github.com/thomasleveil/docker-aria2seeder
- Owner: thomasleveil
- Created: 2016-10-01T14:34:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-01T15:56:58.000Z (over 8 years ago)
- Last Synced: 2025-02-01T13:21:22.297Z (4 months ago)
- Topics: docker-image, torrent
- Homepage: https://hub.docker.com/r/tomdesinto/aria2seeder/
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
aria2seeder
===========Docker image to easily seed a torrent file.
Usage
-----docker run --net=host tomdesinto/aria2seeder http://somewhere.xyz/a_torrent_file.torrent
or if you have a torrent file on your docker host machine:
docker run --net=host -v /on/my/host/a_torrent_file.torrent:/a_torrent_file.torrent tomdesinto/aria2seeder /a_torrent_file.torrent
The download file(s) will be saved on a volume under the location `/data/` of the container. To access those files, either mount that volume to a directory of your docker host before creating the container:docker run --net=host -v /on/my/host/:/data tomdesinto/aria2seeder http://somewhere.xyz/a_torrent_file.torrent
Of extract the files afterwards with the help of the [`docker cp`](https://docs.docker.com/engine/reference/commandline/cp/) command:
docker run --name myseedcontainer --net=host tomdesinto/aria2seeder http://somewhere.xyz/a_torrent_file.torrent # let's say that this will download a file named foo.zip
docker cp myseedcontainer:/data/foo.zip .