mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-05-14 03:10:28 +00:00
added simpletorrent
This commit is contained in:
parent
4d47ce04e6
commit
dd1dc87ff4
@ -97,6 +97,7 @@ So, without further ado, here's the current list:
|
||||
# Download Managers
|
||||
- [Deluge](apps/downloads/deluge.md)
|
||||
- [qbittorrent](apps/downloads/qbit.md)
|
||||
- [SimpleTorrent](apps/downloads/simple-torrent.md)
|
||||
- [Transmission](apps/downloads/transmission.md)
|
||||
|
||||
|
||||
|
30
apps/downloads/simple-torrent.md
Normal file
30
apps/downloads/simple-torrent.md
Normal file
@ -0,0 +1,30 @@
|
||||
# SimpleTorrent (aka CloudTorrent)
|
||||
- can work with no authentication
|
||||
- nice web API
|
||||
- good looking and functional
|
||||
- there doesn't seem to be a way to integrate it with Sonarr/Radarr
|
||||
|
||||
<br>
|
||||
|
||||
- [Github repo](https://github.com/boypt/simple-torrent)
|
||||
|
||||

|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
version: '3'
|
||||
services:
|
||||
cloud-torrent:
|
||||
image: boypt/cloud-torrent
|
||||
container_name: cloud-torrent
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- TZ=Europe/Dublin
|
||||
ports:
|
||||
- "3123:3000"
|
||||
volumes:
|
||||
- ./downloads:/downloads
|
||||
# - /path/to/my/torrents:/torrents
|
||||
```
|
BIN
apps/downloads/simple-torrent.png
Normal file
BIN
apps/downloads/simple-torrent.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 44 KiB |
Loading…
Reference in New Issue
Block a user