remove valkey caching functionality from metadata relay in favour of caching by a cdn like cloudflare

This commit is contained in:
maxDorninger
2025-11-02 21:22:58 +01:00
parent c38995579c
commit 252f8c2f65
4 changed files with 2 additions and 90 deletions

View File

@@ -1,7 +1,7 @@
# MetadataRelay
This is a service that provides metadata for movies and TV shows. It caches the metadata to not overload the TMDB and
TVDB APIs. This service is used by MediaManager to fetch metadata for movies and TV shows. I (the developer) run a
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.
@@ -9,19 +9,12 @@ own instance.
````yaml
services:
valkey:
image: valkey/valkey:latest
restart: always
container_name: valkey
expose:
- 6379
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=
- VALKEY_HOST=valkey
container_name: metadata_relay
ports:
- 8000:8000