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://hub.docker.com/r/flaresolverr/flaresolverr

View File

@ -0,0 +1,10 @@
version: '3.3'
services:
flaresolverr:
container_name: flaresolverr
ports:
- '8191:8191'
environment:
- LOG_LEVEL=info
restart: unless-stopped
image: 'ghcr.io/flaresolverr/flaresolverr:latest'

View File

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

View File

@ -0,0 +1,16 @@
version: "2.1"
services:
jackett:
image: lscr.io/linuxserver/jackett:latest
container_name: jackett
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
- AUTO_UPDATE=true #optional
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jackett/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jackett/downloads:/downloads
ports:
- 9117:9117
restart: unless-stopped

View File

@ -0,0 +1,3 @@
# References
- https://jellyfin.org/docs/general/installation/container#docker

View File

@ -0,0 +1,11 @@
version: '3.3'
services:
jellyfin:
container_name: jellyfin
volumes:
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/config:/config'
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/cache:/cache'
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/media:/media'
network_mode: host
image: 'jellyfin/jellyfin:latest'
restart: unless-stopped

View File

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

View File

@ -0,0 +1,16 @@
version: "2.1"
services:
lidarr:
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/music:/music
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/downloads:/downloads # Should be the same as the download client's folder
ports:
- 8686:8686
restart: unless-stopped

View File

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

View File

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

3
examples/plex/README.md Normal file
View File

@ -0,0 +1,3 @@
# References
- https://hub.docker.com/r/plexinc/pms-docker

View File

@ -0,0 +1,15 @@
version: '3.3'
services:
pms-docker:
container_name: plex
environment:
- TZ=America/Chicago
- PLEX_CLAIM=claim-dvmURANy9Z7MbJhmY7V7
volumes:
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/plex/config:/config'
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/plex/transcode:/transcode'
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/plex/media:/data'
image: plexinc/pms-docker
restart: unless-stopped
ports:
- '32400:32400'

View File

@ -0,0 +1,14 @@
version: "2.1"
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/prowlarr/config:/config
ports:
- 9696:9696
restart: unless-stopped

View File

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

View File

@ -0,0 +1,16 @@
version: "2.1"
services:
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/radarr/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/radarr/movies:/movies
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/radarr/downloads:/downloads # Should be the same as the download client's folder
ports:
- 7878:7878
restart: unless-stopped

View File

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

View File

@ -0,0 +1,16 @@
version: "2.1"
services:
sonarr:
image: cr.hotio.dev/hotio/sonarr
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/configg:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/tv:/data/tv
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/downloads:/downloads # Should be the same as the download client's folder
ports:
- 8989:8989
restart: unless-stopped

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