Files
docker-templates/Starr/compose.yml
Aaron Pierson 8eddb93bd8
All checks were successful
Test Action / test (push) Successful in 3s
merging services
2026-03-08 22:03:04 -05:00

63 lines
1.4 KiB
YAML

---
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