Publish current app and server
This commit is contained in:
+13
-4
@@ -14,7 +14,9 @@ services:
|
||||
# INFO keeps Docker logs concise. Temporarily use DEBUG to include successful
|
||||
# health checks, maintenance polling and artwork requests.
|
||||
MEMBY_LOG_LEVEL: "${MEMBY_LOG_LEVEL:-INFO}"
|
||||
# Local day boundaries and schedule labels for Sonarr's "airing today" row.
|
||||
MEMBY_LOG_BUFFER_CAPACITY: "${MEMBY_LOG_BUFFER_CAPACITY:-5000}"
|
||||
GOMEMLIMIT: "${MEMBY_GOMEMLIMIT:-384MiB}"
|
||||
# Local day boundaries and labels for Sonarr and Radarr schedule rows.
|
||||
MEMBY_TIMEZONE: "${MEMBY_TIMEZONE:-Pacific/Auckland}"
|
||||
# How the gateway reaches Emby.
|
||||
MEMBY_EMBY_URL: "${MEMBY_EMBY_URL:?set MEMBY_EMBY_URL in .env}"
|
||||
@@ -24,9 +26,9 @@ services:
|
||||
MEMBY_DATABASE_URL: "postgres://memby:${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD in .env}@postgres:5432/memby?sslmode=disable"
|
||||
MEMBY_REDIS_URL: "redis://redis:6379/0"
|
||||
MEMBY_HOME_TTL: "${MEMBY_HOME_TTL:-60s}"
|
||||
MEMBY_RECOMMEND_TTL: "${MEMBY_RECOMMEND_TTL:-24h}"
|
||||
# Strict per-Emby-user TV allowance. Signing the same physical TV in again
|
||||
# replaces its token and does not consume another slot.
|
||||
MEMBY_MAX_CLIENTS_PER_USER: "${MEMBY_MAX_CLIENTS_PER_USER:-1}"
|
||||
# Unset disables /admin entirely — the library import, maintenance switch and
|
||||
# analytics page all live behind it.
|
||||
MEMBY_ADMIN_TOKEN: "${MEMBY_ADMIN_TOKEN:-}"
|
||||
@@ -46,6 +48,11 @@ services:
|
||||
MEMBY_SONARR_URL: "${MEMBY_SONARR_URL:-}"
|
||||
MEMBY_SONARR_API_KEY: "${MEMBY_SONARR_API_KEY:-}"
|
||||
MEMBY_SONARR_TTL: "${MEMBY_SONARR_TTL:-5m}"
|
||||
# Optional read-only Radarr calendar integration. Only digital release dates
|
||||
# appear in the five-day movie row.
|
||||
MEMBY_RADARR_URL: "${MEMBY_RADARR_URL:-}"
|
||||
MEMBY_RADARR_API_KEY: "${MEMBY_RADARR_API_KEY:-}"
|
||||
MEMBY_RADARR_TTL: "${MEMBY_RADARR_TTL:-5m}"
|
||||
# Optional Tracearr public API. Memby reads recent playback analytics to rank
|
||||
# the dedicated For You area; the token never leaves this container.
|
||||
MEMBY_TRACEARR_URL: "${MEMBY_TRACEARR_URL:-}"
|
||||
@@ -53,8 +60,10 @@ services:
|
||||
MEMBY_TRACEARR_SERVER_ID: "${MEMBY_TRACEARR_SERVER_ID:-}"
|
||||
MEMBY_TRACEARR_SYNC_INTERVAL: "${MEMBY_TRACEARR_SYNC_INTERVAL:-5m}"
|
||||
MEMBY_TRACEARR_FULL_INTERVAL: "${MEMBY_TRACEARR_FULL_INTERVAL:-24h}"
|
||||
MEMBY_FOR_YOU_MIN_REBUILD_AGE: "${MEMBY_FOR_YOU_MIN_REBUILD_AGE:-10m}"
|
||||
MEMBY_FOR_YOU_REFRESH_INTERVAL: "${MEMBY_FOR_YOU_REFRESH_INTERVAL:-30m}"
|
||||
MEMBY_FOR_YOU_MIN_REBUILD_AGE: "${MEMBY_FOR_YOU_MIN_REBUILD_AGE:-24h}"
|
||||
MEMBY_FOR_YOU_REFRESH_INTERVAL: "${MEMBY_FOR_YOU_REFRESH_INTERVAL:-24h}"
|
||||
MEMBY_FOR_YOU_REBUILD_HOUR: "${MEMBY_FOR_YOU_REBUILD_HOUR:-4}"
|
||||
mem_limit: "${MEMBY_SERVER_MEMORY_LIMIT:-512m}"
|
||||
volumes:
|
||||
- memby-releases:/data/releases
|
||||
depends_on:
|
||||
|
||||
Reference in New Issue
Block a user