Skip to content

Commit 1649499

Browse files
authored
Merge pull request #9 from askiiart/main
Add *arrs, downloaders, Plex, Jellyfin, Jackett
2 parents 6a5e150 + 87429c7 commit 1649499

17 files changed

+169
-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
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: '3.3'
2+
3+
services:
4+
flaresolverr:
5+
image: ghcr.io/flaresolverr/flaresolverr:latest
6+
container_name: flaresolverr
7+
ports:
8+
- 8191:8191
9+
environment:
10+
- LOG_LEVEL=info
11+
- TZ=Europe/Berlin
12+
restart: unless-stopped

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

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

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: '3.3'
2+
services:
3+
jellyfin:
4+
image: jellyfin/jellyfin:latest
5+
container_name: jellyfin
6+
volumes:
7+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/config:/config
8+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/cache:/cache
9+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/jellyfin/media:/media
10+
network_mode: host
11+
restart: unless-stopped
12+
#environment:
13+
# - JELLYFIN_PublishedServerUrl=http://example.com # Optional - alternative address used for autodiscovery
14+
#extra_hosts:
15+
# - "host.docker.internal:host-gateway" # Optional - may be necessary for docker healthcheck to pass if running in host network mode

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

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

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

examples/prowlarr/docker-compose.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: "2.1"
2+
3+
services:
4+
prowlarr:
5+
image: lscr.io/linuxserver/prowlarr:latest
6+
container_name: prowlarr
7+
environment:
8+
- PUID=1000
9+
- PGID=1000
10+
- TZ=Europe/Berlin
11+
volumes:
12+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/prowlarr/config:/config
13+
ports:
14+
- 9696:9696
15+
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

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

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: "2.1"
2+
3+
services:
4+
sonarr:
5+
image: cr.hotio.dev/hotio/sonarr
6+
container_name: sonarr
7+
environment:
8+
- PUID=1000
9+
- PGID=1000
10+
- TZ=Europe/Berlin
11+
volumes:
12+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/config:/config
13+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/tv:/data/tv
14+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/downloads:/downloads # Should be the same as the download client's folder
15+
ports:
16+
- 8989:8989
17+
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
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: "2.1"
2+
3+
services:
4+
transmission:
5+
image: lscr.io/linuxserver/transmission:latest
6+
container_name: transmission
7+
environment:
8+
- PUID=1000
9+
- PGID=1000
10+
- TZ=Europe/Berlin
11+
volumes:
12+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/config:/config'
13+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/downloads:/downloads'
14+
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/watch:/watch'
15+
ports:
16+
- 9091:9091 # web ui
17+
- 51413:51413 # torrent port tcp
18+
- 51413:51413/udp # torrent port udp
19+
restart: unless-stopped

0 commit comments

Comments
 (0)