sonarr and radarr support
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ammar Hussein 2024-12-02 00:37:05 -08:00
parent c1fb6404db
commit bd20fed151
2 changed files with 22 additions and 1 deletions

View File

@ -5,7 +5,14 @@ DOMAIN=jellyfin.example.com
## Domain aliases
#EXTRA_DOMAINS=', `www.jellyfin.example.com`'
COMPOSE_FILE="compose.yml"
LETS_ENCRYPT_ENV=production
# Set to an existing path on the host, and define a path inside the container
# You can set to an existing path on the host, and define a path inside the container
EXTRA_VOLUME=/dev/null:/tmp/.dummy
# uncomment below to refer to the radarr and sonarr volumes
# COMPOSE_FILE="$COMPOSE_FILE:compose.media_volumes.yml"
# movies_volume=<radarr_app>_tv
# shows_volume=<sonarr_app>_tv

14
compose.media_volumes.yml Normal file
View File

@ -0,0 +1,14 @@
---
version: "3.8"
services:
app:
volumes:
- media_movies:/movies
- media_shows:/shows
volumes:
media_movies:
name: $movies_volume
media_shows:
name: $shows_volume