Files
MediaManager/metadata_relay
dependabot[bot] ca5746c802 Bump uvicorn from 0.46.0 to 0.49.0 in /metadata_relay
Bumps [uvicorn](https://github.com/Kludex/uvicorn) from 0.46.0 to 0.49.0.
- [Release notes](https://github.com/Kludex/uvicorn/releases)
- [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md)
- [Commits](https://github.com/Kludex/uvicorn/compare/0.46.0...0.49.0)

---
updated-dependencies:
- dependency-name: uvicorn
  dependency-version: 0.49.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-04 02:27:41 +00:00
..
2026-02-01 18:04:15 +01:00
2026-02-03 13:06:18 +01:00

MetadataRelay

This is a service that provides metadata for movies and TV shows. It is advisable to use a load balancer/CDN like Cloudflare to cache requests as to not overload the TMDB/TVDB api. I (the developer) run a public instance of this service at https://metadata-relay.dorninger.co, but you can also run your own instance.

Example Docker Compose Configuration

services:
  metadata_relay:
    image: ghcr.io/maxdorninger/mediamanager/metadata_relay:latest
    restart: always
    environment:
      - TMDB_API_KEY=  # you need not provide a TMDB API key, if you only want to use TVDB metadata, or the other way around
      - TVDB_API_KEY=
    container_name: metadata_relay
    ports:
      - 8000:8000