forked from ghomasHudson/Jellyfin-Auto-Collections
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* we don't need to set the env in the file, we can just set it explicitly in the docker file * add docker compose * add message if all are disabled * spacing to docker compose for envs
- Loading branch information
Mike Zrimsek
authored
Feb 27, 2024
1 parent
e008130
commit 738b69d
Showing
4 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: "3" | ||
|
||
services: | ||
jellyfin-auto-collections: | ||
image: ghcr.io/mzrimsek/jellyfin-auto-collections | ||
container_name: jellyfin-auto-collections | ||
environment: | ||
- JELLYFIN_SERVER_URL=${JELLYFIN_SERVER_URL} | ||
- JELLYFIN_API_KEY=${JELLYFIN_API_KEY} | ||
- JELLYFIN_USER_ID=${JELLYFIN_USER_ID} | ||
- JELLYFIN_MOVIES_DIR=${JELLYFIN_MOVIES_DIR} | ||
|
||
- DISABLE_TV_YEAR_CHECK=${DISABLE_TV_YEAR_CHECK:-false} | ||
|
||
- DO_KERMODE_INTROS=${DO_KERMODE_INTROS:-false} | ||
- DO_KERMODE_LISTS=${DO_KERMODE_LISTS:-false} | ||
- DO_TURNER_CLASSIC_MOVIE_EXTRAS=${DO_TURNER_CLASSIC_MOVIE_EXTRAS:-false} | ||
- DO_TOP_1000_MOVIES_LIST=${DO_TOP_1000_MOVIES_LIST:-false} | ||
- DO_IMDB_CHARTS=${DO_IMDB_CHARTS:-false} | ||
- DO_IMDB_LISTS=${DO_IMDB_LISTS:-false} | ||
- DO_LETTERBOXD_LISTS=${DO_LETTERBOXD_LISTS:-false} | ||
volumes: | ||
- ${CONFIG_DIR}/jellyfin-auto-collections/config:/app/config | ||
restart: unless-stopped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters