feat: added gluetun
This commit is contained in:
parent
840549ba70
commit
1bda89ab17
2 changed files with 54 additions and 26 deletions
94
arr_stack/docker-compose.yml_index
Normal file
94
arr_stack/docker-compose.yml_index
Normal file
|
@ -0,0 +1,94 @@
|
|||
---
|
||||
services:
|
||||
### Downloader - Usenet
|
||||
sabnzbd:
|
||||
image: lscr.io/linuxserver/sabnzbd:latest
|
||||
container_name: sabnzbd
|
||||
environment:
|
||||
- PUID=123
|
||||
- PGID=123
|
||||
- UMASK=022
|
||||
- TZ=Europe/Berlin
|
||||
volumes:
|
||||
- ./volumes/sabnzbd/config:/config
|
||||
- /opt/nvme/arr/usenet:/data/usenet
|
||||
ports:
|
||||
- 127.0.0.1:28080:8080
|
||||
restart: unless-stopped
|
||||
|
||||
### Library Manager - Music
|
||||
lidarr:
|
||||
image: lscr.io/linuxserver/lidarr:latest
|
||||
container_name: lidarr
|
||||
environment:
|
||||
- PUID=123
|
||||
- PGID=123
|
||||
- UMASK=022
|
||||
- TZ=Europe/Berlin
|
||||
volumes:
|
||||
- ./volumes/lidarr/config:/config
|
||||
- /opt/nvme/arr:/data
|
||||
ports:
|
||||
- 127.0.0.1:28686:8686
|
||||
restart: unless-stopped
|
||||
|
||||
### Library Manager - Movies
|
||||
radarr:
|
||||
image: lscr.io/linuxserver/radarr:latest
|
||||
container_name: radarr
|
||||
environment:
|
||||
- PUID=123
|
||||
- PGID=123
|
||||
- UMASK=022
|
||||
- TZ=Europe/Berlin
|
||||
volumes:
|
||||
- ./volumes/radarr/config:/config
|
||||
- /opt/nvme/arr:/data
|
||||
ports:
|
||||
- 127.0.0.1:27878:7878
|
||||
restart: unless-stopped
|
||||
|
||||
### Libarary Manager - TV Shows
|
||||
sonarr:
|
||||
image: lscr.io/linuxserver/sonarr:develop
|
||||
container_name: sonarr
|
||||
environment:
|
||||
- PUID=123
|
||||
- PGID=123
|
||||
- UMASK=022
|
||||
- TZ=Europe/Berlin
|
||||
volumes:
|
||||
- ./volumes/sonarr/config:/config
|
||||
- /opt/nvme/arr:/data
|
||||
ports:
|
||||
- 127.0.0.1:28989:8989
|
||||
restart: unless-stopped
|
||||
|
||||
### Index and Search Management
|
||||
prowlarr:
|
||||
image: lscr.io/linuxserver/prowlarr:latest
|
||||
container_name: prowlarr
|
||||
environment:
|
||||
- PUID=123
|
||||
- PGID=123
|
||||
- UMASK=022
|
||||
- TZ=Europe/Berlin
|
||||
volumes:
|
||||
- ./volumes/prowlarr/config:/config
|
||||
ports:
|
||||
- 127.0.0.1:29696:9696
|
||||
restart: unless-stopped
|
||||
|
||||
### Content Request Management
|
||||
jellyseerr:
|
||||
image: fallenbagel/jellyseerr:latest
|
||||
container_name: jellyseerr
|
||||
environment:
|
||||
- LOG_LEVEL=debug
|
||||
- UMASK=022
|
||||
- TZ=Europe/Berlin
|
||||
volumes:
|
||||
- ./volumes/jellyseerr/config:/app/config
|
||||
ports:
|
||||
- 127.0.0.1:25055:5055
|
||||
restart: unless-stopped
|
Loading…
Add table
Add a link
Reference in a new issue