diff --git a/.env.sample b/.env.sample index 570b13b..c6e2dcb 100644 --- a/.env.sample +++ b/.env.sample @@ -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=_tv +# shows_volume=_tv \ No newline at end of file diff --git a/compose.media_volumes.yml b/compose.media_volumes.yml new file mode 100644 index 0000000..f3fc46e --- /dev/null +++ b/compose.media_volumes.yml @@ -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 \ No newline at end of file