Skip to content

Instantly share code, notes, and snippets.

@zakkg3
Last active December 8, 2020 16:28
Show Gist options
  • Save zakkg3/4cbc7954b5288304354cc90cf350c182 to your computer and use it in GitHub Desktop.
Save zakkg3/4cbc7954b5288304354cc90cf350c182 to your computer and use it in GitHub Desktop.
rtorrent and plex

just docker-compose up

movies added on rtorrent should appear in plex automatically if you need to convert manget links to .torrent you can use magnet2torrent.com

---
version: "2.1"
services:
rutorrent:
image: ghcr.io/linuxserver/rutorrent
container_name: rutorrent
environment:
- PUID=1000
- PGID=1000
volumes:
- /home/nico/torrent/data/:/config
- /home/nico/torrent/data/downloads:/downloads
ports:
- 80:80
- 5000:5000
- 51413:51413
- 6881:6881/udp
restart: unless-stopped
plex:
image: ghcr.io/linuxserver/plex
container_name: plex
network_mode: host
environment:
- PUID=1000
- PGID=1000
- VERSION=docker
- UMASK_SET=022 #optional
- PLEX_CLAIM= #optional
volumes:
- /home/nico/torrent/data/downloads:/config
- /home/nico/torrent/data/downloads:/tv
- /home/nico/torrent/data/downloads:/movies
---
version: "2.1"
services:
rutorrent:
image: ghcr.io/linuxserver/rutorrent
container_name: rutorrent
environment:
- PUID=1000
- PGID=1000
volumes:
- /home/pi/torrents/compose:/config
- /home/pi/torrents/compose:/downloads
ports:
- 80:80
- 5000:5000
- 51413:51413
- 6881:6881/udp
restart: unless-stopped
plex:
image: zakkg3/pms-docker:armv7
container_name: plex
network_mode: host
volumes:
- /home/pi/torrents/compose/config:/config
- /home/pi/torrents/compose/transcode:/transcode
- /home/pi/torrents/compose/completed:/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment