mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-23 20:11:12 +00:00
Add *arrs, downloaders, plex, jellyfin
This commit is contained in:
parent
613e10a201
commit
c624acc23d
3
examples/flaresolverr/README.md
Normal file
3
examples/flaresolverr/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://hub.docker.com/r/flaresolverr/flaresolverr
|
10
examples/flaresolverr/docker-compose.yml
Normal file
10
examples/flaresolverr/docker-compose.yml
Normal 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'
|
3
examples/jackett/README.md
Normal file
3
examples/jackett/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://github.com/linuxserver/docker-jackett
|
16
examples/jackett/docker-compose.yml
Normal file
16
examples/jackett/docker-compose.yml
Normal 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
|
3
examples/jellyfin/README.md
Normal file
3
examples/jellyfin/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://jellyfin.org/docs/general/installation/container#docker
|
11
examples/jellyfin/docker-compose.yml
Normal file
11
examples/jellyfin/docker-compose.yml
Normal 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
|
3
examples/lidarr/README.md
Normal file
3
examples/lidarr/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://github.com/linuxserver/docker-lidarr
|
16
examples/lidarr/docker-compose.yml
Normal file
16
examples/lidarr/docker-compose.yml
Normal 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
|
3
examples/nzbget/README.md
Normal file
3
examples/nzbget/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://github.com/linuxserver/docker-nzbget
|
15
examples/nzbget/docker-compose.yml
Normal file
15
examples/nzbget/docker-compose.yml
Normal 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
3
examples/plex/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://hub.docker.com/r/plexinc/pms-docker
|
15
examples/plex/docker-compose.yml
Normal file
15
examples/plex/docker-compose.yml
Normal 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'
|
14
examples/prowlarr/docker-compose.yml
Normal file
14
examples/prowlarr/docker-compose.yml
Normal 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
|
3
examples/radarr/README.md
Normal file
3
examples/radarr/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://github.com/linuxserver/docker-radarr
|
16
examples/radarr/docker-compose.yml
Normal file
16
examples/radarr/docker-compose.yml
Normal 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
|
3
examples/sonarr/README.md
Normal file
3
examples/sonarr/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://github.com/linuxserver/docker-sonarr
|
16
examples/sonarr/docker-compose.yml
Normal file
16
examples/sonarr/docker-compose.yml
Normal 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
|
3
examples/transmission/README.md
Normal file
3
examples/transmission/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://github.com/linuxserver/docker-transmission
|
16
examples/transmission/docker-compose.yml
Normal file
16
examples/transmission/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user