Inital Commit - Raddar + Sonarr + Bazarr + Prowlarr
This commit is contained in:
59
docker-compose.yml
Normal file
59
docker-compose.yml
Normal file
@@ -0,0 +1,59 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
radarr:
|
||||
image: ghcr.io/linuxserver/radarr
|
||||
container_name: radarr_server
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Asia/Jerusalem
|
||||
volumes:
|
||||
- ./radarr/config:/config
|
||||
- /Red-Vol/Torrents/Movies:/movies #optional
|
||||
ports:
|
||||
- 7878:7878
|
||||
restart: unless-stopped
|
||||
bazarr:
|
||||
image: ghcr.io/linuxserver/bazarr
|
||||
container_name: bazarr_server
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Asia/Jerusalem
|
||||
volumes:
|
||||
- ./bazarr/config:/config
|
||||
- /Red-Vol/Torrents/Movies:/movies #optional
|
||||
- "/Red-Vol/Torrents/TV Shows:/tv" #optional
|
||||
ports:
|
||||
- 6767:6767
|
||||
restart: unless-stopped
|
||||
sonarr:
|
||||
image: ghcr.io/linuxserver/sonarr
|
||||
container_name: sonarr_server
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Asia/Jerusalem
|
||||
volumes:
|
||||
- ./sonarr/config:/config
|
||||
- "/Red-Vol/Torrents/TV Shows:/tv" #optional
|
||||
ports:
|
||||
- "8989:8989"
|
||||
restart: unless-stopped
|
||||
prowlarr:
|
||||
image: ghcr.io/linuxserver/prowlarr:develop
|
||||
container_name: prowlarr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Asia/Jerusalem
|
||||
volumes:
|
||||
- ./prowlarr-data:/config
|
||||
ports:
|
||||
- 9696:9696
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
default:
|
||||
external: true
|
||||
name: takahe_network
|
||||
Reference in New Issue
Block a user