Add *arrs, downloaders, plex, jellyfin

This commit is contained in:
askiiart
2023-02-28 12:18:29 -06:00
parent 613e10a201
commit c624acc23d
19 changed files with 172 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
# References
- https://github.com/linuxserver/docker-transmission

View File

@@ -0,0 +1,16 @@
version: "2.1"
services:
transmission:
image: lscr.io/linuxserver/transmission:latest
container_name: transmission
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
volumes:
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/data:/config'
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/downloads:/downloads'
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/watch:/watch'
ports:
- 9091:9091
restart: unless-stopped