This commit is contained in:
@@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
services:
|
|
||||||
bazarr:
|
|
||||||
image: lscr.io/linuxserver/bazarr:latest
|
|
||||||
container_name: bazarr
|
|
||||||
environment:
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
- TZ=Etc/UTC
|
|
||||||
volumes:
|
|
||||||
- /path/to/bazarr/config:/config
|
|
||||||
- /path/to/movies:/movies #optional
|
|
||||||
- /path/to/tv:/tv #optional
|
|
||||||
ports:
|
|
||||||
- 6767:6767
|
|
||||||
restart: unless-stopped
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
services:
|
|
||||||
byparr:
|
|
||||||
image: ghcr.io/thephaseless/byparr:latest
|
|
||||||
restart: unless-stopped
|
|
||||||
init: true
|
|
||||||
build:
|
|
||||||
context: .
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
# Uncomment below to use byparr outside of internal network
|
|
||||||
# ports:
|
|
||||||
# - "8191:8191"
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
version: "3"
|
|
||||||
|
|
||||||
services:
|
|
||||||
checkrr:
|
|
||||||
container_name: checkrr
|
|
||||||
image: aetaric/checkrr:latest
|
|
||||||
volumes:
|
|
||||||
- /path/to/checkrr/config/checkrr.yaml:/etc/checkrr.yaml
|
|
||||||
- /path/to/checkrr/config/checkrr.db:/checkrr.db
|
|
||||||
- /path/to/media/to/scan:/media
|
|
||||||
ports:
|
|
||||||
- 8585:8585
|
|
||||||
restart: on-failure
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
services:
|
|
||||||
decluttarr:
|
|
||||||
image: ghcr.io/manimatter/decluttarr:latest
|
|
||||||
container_name: decluttarr
|
|
||||||
restart: always
|
|
||||||
environment:
|
|
||||||
TZ: Europe/Zurich
|
|
||||||
PUID: 1000
|
|
||||||
PGID: 1000
|
|
||||||
volumes:
|
|
||||||
- $DOCKERDIR/appdata/decluttarr/config.yaml:/app/config/config.yaml
|
|
||||||
# - $DOCKERDIR/appdata/decluttarr/logs:/app/logs # Uncomment to get logs in text file, too
|
|
||||||
# - $DOCKERDIR/appdata/decluttarr/logs:/app/logs # Uncomment to get logs in text file, too
|
|
||||||
# - $DATADIR/media:/media # If you use detect_deletions, add the identical mount paths that you use in your sonarr/radarr instances. This may be different to this example!
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
services:
|
|
||||||
lidarr:
|
|
||||||
image: lscr.io/linuxserver/lidarr:latest
|
|
||||||
container_name: lidarr
|
|
||||||
environment:
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
- TZ=Etc/UTC
|
|
||||||
volumes:
|
|
||||||
- /path/to/lidarr/config:/config
|
|
||||||
- /path/to/music:/music #optional
|
|
||||||
- /path/to/downloads:/downloads #optional
|
|
||||||
ports:
|
|
||||||
- 8686:8686
|
|
||||||
restart: unless-stopped
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
services:
|
|
||||||
sonarr:
|
|
||||||
image: lscr.io/linuxserver/sonarr:latest
|
|
||||||
container_name: sonarr
|
|
||||||
environment:
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
- TZ=Etc/UTC
|
|
||||||
volumes:
|
|
||||||
- /path/to/sonarr/data:/config
|
|
||||||
- /path/to/tvseries:/tv #optional
|
|
||||||
- /path/to/downloadclient-downloads:/downloads #optional
|
|
||||||
ports:
|
|
||||||
- 8989:8989
|
|
||||||
restart: unless-stopped
|
|
||||||
0
Starr/README.MD
Normal file
0
Starr/README.MD
Normal file
62
Starr/compose.yml
Normal file
62
Starr/compose.yml
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
---
|
||||||
|
services:
|
||||||
|
#TV
|
||||||
|
sonarr:
|
||||||
|
image: lscr.io/linuxserver/sonarr:latest
|
||||||
|
container_name: sonarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
volumes:
|
||||||
|
- /path/to/sonarr/data:/config
|
||||||
|
- /path/to/tvseries:/tv #optional
|
||||||
|
- /path/to/downloadclient-downloads:/downloads #optional
|
||||||
|
ports:
|
||||||
|
- 8989:8989
|
||||||
|
restart: unless-stopped
|
||||||
|
#Music
|
||||||
|
lidarr:
|
||||||
|
image: lscr.io/linuxserver/lidarr:latest
|
||||||
|
container_name: lidarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
volumes:
|
||||||
|
- /path/to/lidarr/config:/config
|
||||||
|
- /path/to/music:/music #optional
|
||||||
|
- /path/to/downloads:/downloads #optional
|
||||||
|
ports:
|
||||||
|
- 8686:8686
|
||||||
|
restart: unless-stopped
|
||||||
|
# Movies
|
||||||
|
radarr:
|
||||||
|
image: lscr.io/linuxserver/radarr:latest
|
||||||
|
container_name: radarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
volumes:
|
||||||
|
- /path/to/radarr/data:/config
|
||||||
|
- /path/to/movies:/movies #optional
|
||||||
|
- /path/to/download-client-downloads:/downloads #optional
|
||||||
|
ports:
|
||||||
|
- 7878:7878
|
||||||
|
restart: unless-stopped
|
||||||
|
#Adult
|
||||||
|
whisparr:
|
||||||
|
container_name: whisparr
|
||||||
|
image: ghcr.io/hotio/whisparr:V3
|
||||||
|
ports:
|
||||||
|
- "6969:6969"
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- UMASK=002
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
- WEBUI_PORTS=6969/tcp
|
||||||
|
volumes:
|
||||||
|
- /<host_folder_config>:/config
|
||||||
|
- /<host_folder_data>:/data
|
||||||
0
StarrServices/README.MD
Normal file
0
StarrServices/README.MD
Normal file
53
StarrServices/compose.yml
Normal file
53
StarrServices/compose.yml
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
---
|
||||||
|
services:
|
||||||
|
#Subs
|
||||||
|
bazarr:
|
||||||
|
image: lscr.io/linuxserver/bazarr:latest
|
||||||
|
container_name: bazarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
volumes:
|
||||||
|
- /path/to/bazarr/config:/config
|
||||||
|
- /path/to/movies:/movies #optional
|
||||||
|
- /path/to/tv:/tv #optional
|
||||||
|
ports:
|
||||||
|
- 6767:6767
|
||||||
|
restart: unless-stopped
|
||||||
|
#
|
||||||
|
byparr:
|
||||||
|
image: ghcr.io/thephaseless/byparr:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
init: true
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
# Uncomment below to use byparr outside of internal network
|
||||||
|
# ports:
|
||||||
|
# - "8191:8191"
|
||||||
|
#
|
||||||
|
checkrr:
|
||||||
|
container_name: checkrr
|
||||||
|
image: aetaric/checkrr:latest
|
||||||
|
volumes:
|
||||||
|
- /path/to/checkrr/config/checkrr.yaml:/etc/checkrr.yaml
|
||||||
|
- /path/to/checkrr/config/checkrr.db:/checkrr.db
|
||||||
|
- /path/to/media/to/scan:/media
|
||||||
|
ports:
|
||||||
|
- 8585:8585
|
||||||
|
restart: on-failure
|
||||||
|
#
|
||||||
|
decluttarr:
|
||||||
|
image: ghcr.io/manimatter/decluttarr:latest
|
||||||
|
container_name: decluttarr
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
TZ: America/Chicago
|
||||||
|
PUID: 1000
|
||||||
|
PGID: 1000
|
||||||
|
volumes:
|
||||||
|
- $DOCKERDIR/appdata/decluttarr/config.yaml:/app/config/config.yaml
|
||||||
|
# - $DOCKERDIR/appdata/decluttarr/logs:/app/logs # Uncomment to get logs in text file, too
|
||||||
|
# - $DOCKERDIR/appdata/decluttarr/logs:/app/logs # Uncomment to get logs in text file, too
|
||||||
|
# - $DATADIR/media:/media # If you use detect_deletions, add the identical mount paths that you use in your sonarr/radarr instances. This may be different to this example!
|
||||||
Reference in New Issue
Block a user