This commit is contained in:
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
|
||||
Reference in New Issue
Block a user