diff --git a/README.md b/README.md index 08c80d6..4f641b3 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/apps/downloads/simple-torrent.md b/apps/downloads/simple-torrent.md new file mode 100644 index 0000000..abce12f --- /dev/null +++ b/apps/downloads/simple-torrent.md @@ -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 + +
+ +- [Github repo](https://github.com/boypt/simple-torrent) + +![Screenshot](simple-torrent.png) + + +## 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 +``` diff --git a/apps/downloads/simple-torrent.png b/apps/downloads/simple-torrent.png new file mode 100644 index 0000000..80407d3 Binary files /dev/null and b/apps/downloads/simple-torrent.png differ