diff --git a/apps/aiometadata/.env b/apps/aiometadata/.env index 552dc78..1efc46d 100644 --- a/apps/aiometadata/.env +++ b/apps/aiometadata/.env @@ -43,11 +43,11 @@ REDIS_URL=redis://aiometadata_redis:6379 # -- Cache Performance & Warming -- # Set to "false" to disable automatic cache warming on startup. (Default: true) ENABLE_CACHE_WARMING=true -CACHE_WARMUP_UUIDS=1f1da7d1-2757-4675-baae-df787ebcc68a +# CACHE_WARMUP_UUIDS= # Choose warm-up mode, 'essential' warms select TMDB/MAL catalogs with limited depth # whilst 'comprehensive' warms all the catalogs present in a UUID, at the max depth specified below # NOTE: comprehensive *requires* a CACHE_WARMUP_UUID to be set -CACHE_WARMUP_MODE=comprehensive +CACHE_WARMUP_MODE=essential # Set the max page number to warm per catalog (Default: 100) CATALOG_WARMUP_MAX_PAGES_PER_CATALOG=100 # Set to "false" to disable warming of popular TMDB content. (Default: true) diff --git a/apps/aiometadata/compose.yaml b/apps/aiometadata/compose.yaml index 027bbd7..4516921 100644 --- a/apps/aiometadata/compose.yaml +++ b/apps/aiometadata/compose.yaml @@ -1,10 +1,12 @@ services: aiometadata: - image: ghcr.io/cedya77/aiometadata:beta + image: ghcr.io/cedya77/aiometadata:latest container_name: aiometadata restart: unless-stopped expose: - ${PORT:-1337} + env_file: + - .env labels: - "traefik.enable=true" - "traefik.http.routers.aiometadata.rule=Host(`${AIOMETADATA_HOSTNAME?}`)"