mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-01-31 13:43:47 +00:00
Merge pull request #9 from askiiart/main
Add *arrs, downloaders, Plex, Jellyfin, Jackett
This commit is contained in:
commit
1649499461
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
|
12
examples/flaresolverr/docker-compose.yml
Normal file
12
examples/flaresolverr/docker-compose.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
version: '3.3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
flaresolverr:
|
||||||
|
image: ghcr.io/flaresolverr/flaresolverr:latest
|
||||||
|
container_name: flaresolverr
|
||||||
|
ports:
|
||||||
|
- 8191:8191
|
||||||
|
environment:
|
||||||
|
- LOG_LEVEL=info
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
restart: unless-stopped
|
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
|
17
examples/jackett/docker-compose.yml
Normal file
17
examples/jackett/docker-compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
version: "2.1"
|
||||||
|
|
||||||
|
services:
|
||||||
|
jackett:
|
||||||
|
image: lscr.io/linuxserver/jackett:latest
|
||||||
|
container_name: jackett
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
- 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
|
15
examples/jellyfin/docker-compose.yml
Normal file
15
examples/jellyfin/docker-compose.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
version: '3.3'
|
||||||
|
services:
|
||||||
|
jellyfin:
|
||||||
|
image: jellyfin/jellyfin:latest
|
||||||
|
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
|
||||||
|
restart: unless-stopped
|
||||||
|
#environment:
|
||||||
|
# - JELLYFIN_PublishedServerUrl=http://example.com # Optional - alternative address used for autodiscovery
|
||||||
|
#extra_hosts:
|
||||||
|
# - "host.docker.internal:host-gateway" # Optional - may be necessary for docker healthcheck to pass if running in host network mode
|
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
|
17
examples/lidarr/docker-compose.yml
Normal file
17
examples/lidarr/docker-compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
version: "2.1"
|
||||||
|
|
||||||
|
services:
|
||||||
|
lidarr:
|
||||||
|
image: lscr.io/linuxserver/lidarr:latest
|
||||||
|
container_name: lidarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
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/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
|
16
examples/plex/docker-compose.yml
Normal file
16
examples/plex/docker-compose.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
version: '3.3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
pms-docker:
|
||||||
|
image: plexinc/pms-docker
|
||||||
|
container_name: plex
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
- PLEX_CLAIM=claim-dvmURANy9Z7MbJhmY7V7 # pls adjust
|
||||||
|
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
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- '32400:32400'
|
15
examples/prowlarr/docker-compose.yml
Normal file
15
examples/prowlarr/docker-compose.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
version: "2.1"
|
||||||
|
|
||||||
|
services:
|
||||||
|
prowlarr:
|
||||||
|
image: lscr.io/linuxserver/prowlarr:latest
|
||||||
|
container_name: prowlarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
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
|
17
examples/radarr/docker-compose.yml
Normal file
17
examples/radarr/docker-compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
version: "2.1"
|
||||||
|
|
||||||
|
services:
|
||||||
|
radarr:
|
||||||
|
image: lscr.io/linuxserver/radarr:latest
|
||||||
|
container_name: radarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
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
|
17
examples/sonarr/docker-compose.yml
Normal file
17
examples/sonarr/docker-compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
version: "2.1"
|
||||||
|
|
||||||
|
services:
|
||||||
|
sonarr:
|
||||||
|
image: cr.hotio.dev/hotio/sonarr
|
||||||
|
container_name: sonarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarr/config:/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
|
19
examples/transmission/docker-compose.yml
Normal file
19
examples/transmission/docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
version: "2.1"
|
||||||
|
|
||||||
|
services:
|
||||||
|
transmission:
|
||||||
|
image: lscr.io/linuxserver/transmission:latest
|
||||||
|
container_name: transmission
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
volumes:
|
||||||
|
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/config:/config'
|
||||||
|
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/downloads:/downloads'
|
||||||
|
- '${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/transmission/watch:/watch'
|
||||||
|
ports:
|
||||||
|
- 9091:9091 # web ui
|
||||||
|
- 51413:51413 # torrent port tcp
|
||||||
|
- 51413:51413/udp # torrent port udp
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user