Skip to content

Commit c624acc

Browse files
author
askiiart
committed
Add *arrs, downloaders, plex, jellyfin
1 parent 613e10a commit c624acc

19 files changed

+172
-0
lines changed

examples/flaresolverr/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# References
2+
3+
- https://hub.docker.com/r/flaresolverr/flaresolverr
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: '3.3'
2+
services:
3+
flaresolverr:
4+
container_name: flaresolverr
5+
ports:
6+
- '8191:8191'
7+
environment:
8+
- LOG_LEVEL=info
9+
restart: unless-stopped
10+
image: 'ghcr.io/flaresolverr/flaresolverr:latest'

examples/jackett/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# References
2+
3+
- https://github.com/linuxserver/docker-jackett

examples/jackett/docker-compose.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: "2.1"
2+
services:
3+
jackett:
4+
image: lscr.io/linuxserver/jackett:latest
5+
container_name: jackett
6+
environment:
7+
- PUID=1000
8+
- PGID=1000
9+
- TZ=America/Chicago
10+
- AUTO_UPDATE=true #optional
11+
volumes:
12+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jackett/config:/config
13+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jackett/downloads:/downloads
14+
ports:
15+
- 9117:9117
16+
restart: unless-stopped

examples/jellyfin/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# References
2+
3+
- https://jellyfin.org/docs/general/installation/container#docker

examples/jellyfin/docker-compose.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: '3.3'
2+
services:
3+
jellyfin:
4+
container_name: jellyfin
5+
volumes:
6+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/config:/config'
7+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/cache:/cache'
8+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/media:/media'
9+
network_mode: host
10+
image: 'jellyfin/jellyfin:latest'
11+
restart: unless-stopped

examples/lidarr/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# References
2+
3+
- https://github.com/linuxserver/docker-lidarr

examples/lidarr/docker-compose.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: "2.1"
2+
services:
3+
lidarr:
4+
image: lscr.io/linuxserver/lidarr:latest
5+
container_name: lidarr
6+
environment:
7+
- PUID=1000
8+
- PGID=1000
9+
- TZ=America/Chicago
10+
volumes:
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/config:/config
12+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/music:/music
13+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/lidarr/downloads:/downloads # Should be the same as the download client's folder
14+
ports:
15+
- 8686:8686
16+
restart: unless-stopped

examples/nzbget/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# References
2+
3+
- https://github.com/linuxserver/docker-nzbget

examples/nzbget/docker-compose.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: "2.1"
2+
services:
3+
nzbget:
4+
image: lscr.io/linuxserver/nzbget:latest
5+
container_name: nzbget
6+
environment:
7+
- PUID=1000
8+
- PGID=1000
9+
- TZ=America/Chicago
10+
volumes:
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/nzbget/config:/config
12+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/nzbget/downloads:/downloads
13+
ports:
14+
- 6789:6789
15+
restart: unless-stopped

examples/plex/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# References
2+
3+
- https://hub.docker.com/r/plexinc/pms-docker

examples/plex/docker-compose.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: '3.3'
2+
services:
3+
pms-docker:
4+
container_name: plex
5+
environment:
6+
- TZ=America/Chicago
7+
- PLEX_CLAIM=claim-dvmURANy9Z7MbJhmY7V7
8+
volumes:
9+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/plex/config:/config'
10+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/plex/transcode:/transcode'
11+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/plex/media:/data'
12+
image: plexinc/pms-docker
13+
restart: unless-stopped
14+
ports:
15+
- '32400:32400'

examples/prowlarr/docker-compose.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: "2.1"
2+
services:
3+
prowlarr:
4+
image: lscr.io/linuxserver/prowlarr:latest
5+
container_name: prowlarr
6+
environment:
7+
- PUID=1000
8+
- PGID=1000
9+
- TZ=America/Chicago
10+
volumes:
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/prowlarr/config:/config
12+
ports:
13+
- 9696:9696
14+
restart: unless-stopped

examples/radarr/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# References
2+
3+
- https://github.com/linuxserver/docker-radarr

examples/radarr/docker-compose.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: "2.1"
2+
services:
3+
radarr:
4+
image: lscr.io/linuxserver/radarr:latest
5+
container_name: radarr
6+
environment:
7+
- PUID=1000
8+
- PGID=1000
9+
- TZ=America/Chicago
10+
volumes:
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/radarr/config:/config
12+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/radarr/movies:/movies
13+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/radarr/downloads:/downloads # Should be the same as the download client's folder
14+
ports:
15+
- 7878:7878
16+
restart: unless-stopped

examples/sonarr/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# References
2+
3+
- https://github.com/linuxserver/docker-sonarr

examples/sonarr/docker-compose.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: "2.1"
2+
services:
3+
sonarr:
4+
image: cr.hotio.dev/hotio/sonarr
5+
container_name: sonarr
6+
environment:
7+
- PUID=1000
8+
- PGID=1000
9+
- TZ=America/Chicago
10+
volumes:
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/configg:/config
12+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/tv:/data/tv
13+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/downloads:/downloads # Should be the same as the download client's folder
14+
ports:
15+
- 8989:8989
16+
restart: unless-stopped

examples/transmission/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# References
2+
3+
- https://github.com/linuxserver/docker-transmission
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: "2.1"
2+
services:
3+
transmission:
4+
image: lscr.io/linuxserver/transmission:latest
5+
container_name: transmission
6+
environment:
7+
- PUID=1000
8+
- PGID=1000
9+
- TZ=America/Chicago
10+
volumes:
11+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/data:/config'
12+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/downloads:/downloads'
13+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/watch:/watch'
14+
ports:
15+
- 9091:9091
16+
restart: unless-stopped

0 commit comments

Comments
 (0)