Home - ghomasHudson/Jellyfin-Auto-Collections GitHub Wiki
Welcome to the Jellyfin-Auto-Collections wiki!
See the sidebar for additional documentation on each plugin.
Getting Started
Docker-compose
- Make sure docker and docker-compose are installed.
- Copy config.yaml.example to
config.yamlsomewhere locally, e.g. at./jf_auto_collections/config.yaml. - Edit this config file with the lists you want to add.
- Create (or add to) a docker file:
services:
jellyfin-auto-collections:
image: ghcr.io/ghomashudson/jellyfin-auto-collections:latest
container_name: jellyfin-auto-collections
environment:
- CRONTAB=0 0 * * *
- TZ=America/New_York
- JELLYFIN_SERVER_URL=https://www.jellyfin.example.com
- JELLYFIN_API_KEY=1a1111aa1a1a1aaaa11a11aa111aaa11
- JELLYFIN_USER_ID=2b2222bb2b2b2bbbb22b22bb222bbb22
volumes:
- ./jf_auto_collections:/app/config
restart: unless-stopped
- Run
docker compose up jellyfin-auto-collections. The script will run when you begin the container and again according to your cron schedule.