fix(aiometadata): update image tag to latest and add env_file

closes #52
This commit is contained in:
Viren070
2025-11-09 18:17:44 +00:00
parent 529f779fc2
commit 6b12bbc090
2 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -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)
+3 -1
View File
@@ -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?}`)"