2026-07-27 08:16:20 +12:00
|
|
|
name: memby
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
server:
|
|
|
|
|
build: ./server
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
2026-07-29 15:26:27 +12:00
|
|
|
# The NAS reverse proxy for https://mserver.sublogue.com targets this fixed
|
|
|
|
|
# port. Keep host and container on 32768 so Docker's published mapping and
|
|
|
|
|
# the process listener cannot drift apart.
|
|
|
|
|
- "${MEMBY_PORT:-32768}:32768"
|
2026-07-27 08:16:20 +12:00
|
|
|
environment:
|
2026-07-29 15:26:27 +12:00
|
|
|
MEMBY_LISTEN_ADDR: ":32768"
|
2026-07-27 21:06:51 +12:00
|
|
|
# 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}"
|
2026-08-02 22:10:19 +12:00
|
|
|
MEMBY_LOG_BUFFER_CAPACITY: "${MEMBY_LOG_BUFFER_CAPACITY:-5000}"
|
2026-08-12 09:57:56 +12:00
|
|
|
# Structured history is restored into the admin log after a deployment.
|
|
|
|
|
MEMBY_LOG_HISTORY_PATH: "${MEMBY_LOG_HISTORY_PATH:-/data/logs/events.jsonl}"
|
2026-08-06 22:33:56 +12:00
|
|
|
# console is one aligned, readable line per event; logfmt and json are for tools.
|
|
|
|
|
MEMBY_LOG_FORMAT: "${MEMBY_LOG_FORMAT:-console}"
|
2026-08-02 22:10:19 +12:00
|
|
|
GOMEMLIMIT: "${MEMBY_GOMEMLIMIT:-384MiB}"
|
|
|
|
|
# Local day boundaries and labels for Sonarr and Radarr schedule rows.
|
2026-07-27 21:06:51 +12:00
|
|
|
MEMBY_TIMEZONE: "${MEMBY_TIMEZONE:-Pacific/Auckland}"
|
2026-07-27 08:16:20 +12:00
|
|
|
# How the gateway reaches Emby.
|
|
|
|
|
MEMBY_EMBY_URL: "${MEMBY_EMBY_URL:?set MEMBY_EMBY_URL in .env}"
|
|
|
|
|
# What the TVs are told to stream from. Only set this when it differs from the
|
|
|
|
|
# address above (video goes device -> Emby directly, never through the gateway).
|
|
|
|
|
MEMBY_EMBY_PUBLIC_URL: "${MEMBY_EMBY_PUBLIC_URL:-}"
|
|
|
|
|
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}"
|
2026-08-02 22:10:19 +12:00
|
|
|
MEMBY_RECOMMEND_TTL: "${MEMBY_RECOMMEND_TTL:-24h}"
|
2026-08-12 09:57:56 +12:00
|
|
|
# Complete, schema-validated presentation document. Blank serves bundled-equivalent
|
|
|
|
|
# defaults; downloaded changes are activated by TVs on their next app process.
|
|
|
|
|
MEMBY_REMOTE_CONFIG_JSON: "${MEMBY_REMOTE_CONFIG_JSON:-}"
|
2026-07-27 21:06:51 +12:00
|
|
|
# Strict per-Emby-user TV allowance. Signing the same physical TV in again
|
|
|
|
|
# replaces its token and does not consume another slot.
|
2026-07-27 08:16:20 +12:00
|
|
|
# Unset disables /admin entirely — the library import, maintenance switch and
|
|
|
|
|
# analytics page all live behind it.
|
|
|
|
|
MEMBY_ADMIN_TOKEN: "${MEMBY_ADMIN_TOKEN:-}"
|
2026-08-14 09:40:03 +12:00
|
|
|
# Where the console's own container serves its built assets. Internal to this
|
|
|
|
|
# network: memby-admin is never published, and the gateway proxies /admin to it so
|
|
|
|
|
# the console shares this origin, this cookie and this single ingress. Blank
|
|
|
|
|
# disables the console while leaving the /admin API intact for automation.
|
|
|
|
|
MEMBY_ADMIN_UI_URL: "${MEMBY_ADMIN_UI_URL:-http://memby-admin:80}"
|
2026-07-27 21:06:51 +12:00
|
|
|
# CI publishes signed APKs here. The dedicated token does not grant access to the
|
|
|
|
|
# rest of the admin API.
|
|
|
|
|
MEMBY_PUBLIC_URL: "${MEMBY_PUBLIC_URL:-https://mserver.sublogue.com}"
|
|
|
|
|
MEMBY_RELEASE_DIR: "/data/releases"
|
|
|
|
|
MEMBY_RELEASE_PUBLISH_TOKEN: "${MEMBY_RELEASE_PUBLISH_TOKEN:-}"
|
2026-07-27 08:16:20 +12:00
|
|
|
# Hourly incremental import: enough for episodes landing through the day, and
|
|
|
|
|
# films appearing weekly ride along.
|
|
|
|
|
MEMBY_SYNC_INTERVAL: "${MEMBY_SYNC_INTERVAL:-1h}"
|
|
|
|
|
MEMBY_SYNC_ON_START: "${MEMBY_SYNC_ON_START:-false}"
|
|
|
|
|
MEMBY_SYNC_USER_ID: "${MEMBY_SYNC_USER_ID:-}"
|
|
|
|
|
MEMBY_SYNC_API_KEY: "${MEMBY_SYNC_API_KEY:-}"
|
2026-07-27 21:06:51 +12:00
|
|
|
# Optional read-only Sonarr calendar integration. Both values are required to
|
|
|
|
|
# enable it; the API key remains inside the gateway.
|
|
|
|
|
MEMBY_SONARR_URL: "${MEMBY_SONARR_URL:-}"
|
|
|
|
|
MEMBY_SONARR_API_KEY: "${MEMBY_SONARR_API_KEY:-}"
|
|
|
|
|
MEMBY_SONARR_TTL: "${MEMBY_SONARR_TTL:-5m}"
|
2026-08-02 22:10:19 +12:00
|
|
|
# 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}"
|
2026-07-29 15:26:27 +12:00
|
|
|
# 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:-}"
|
|
|
|
|
MEMBY_TRACEARR_API_KEY: "${MEMBY_TRACEARR_API_KEY:-}"
|
|
|
|
|
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}"
|
2026-08-02 22:10:19 +12:00
|
|
|
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}"
|
2026-07-27 21:06:51 +12:00
|
|
|
volumes:
|
|
|
|
|
- memby-releases:/data/releases
|
2026-08-12 09:57:56 +12:00
|
|
|
- memby-logs:/data/logs
|
2026-07-27 08:16:20 +12:00
|
|
|
depends_on:
|
|
|
|
|
postgres:
|
|
|
|
|
condition: service_healthy
|
|
|
|
|
redis:
|
|
|
|
|
condition: service_healthy
|
2026-08-14 09:40:03 +12:00
|
|
|
# Started, not healthy: the gateway serves televisions and must not wait on the
|
|
|
|
|
# console to come up. A console that is not answering yet is a page that says so.
|
|
|
|
|
memby-admin:
|
|
|
|
|
condition: service_started
|
2026-07-27 08:16:20 +12:00
|
|
|
healthcheck:
|
|
|
|
|
# No shell or curl in a distroless image, so probe with the binary's own server
|
|
|
|
|
# via the container's TCP port from the Docker healthcheck's perspective.
|
|
|
|
|
test: ["CMD", "/app/memby-server", "-healthcheck"]
|
|
|
|
|
interval: 30s
|
|
|
|
|
timeout: 5s
|
|
|
|
|
retries: 3
|
|
|
|
|
start_period: 10s
|
|
|
|
|
|
2026-08-14 09:40:03 +12:00
|
|
|
# The operations console: a React application built at image time and served by nginx.
|
|
|
|
|
#
|
|
|
|
|
# Deliberately not published. The household's reverse proxy sends one hostname to the
|
|
|
|
|
# gateway and nothing else, and the admin session is a cookie on that origin — so the
|
|
|
|
|
# gateway proxies /admin here rather than this being a second origin with its own proxy
|
|
|
|
|
# rule, its own CORS allowlist and a cookie relaxed to SameSite=None to survive the
|
|
|
|
|
# crossing. It holds no state and no credentials; replacing it is replacing a directory
|
|
|
|
|
# of files.
|
|
|
|
|
memby-admin:
|
|
|
|
|
build: ./admin-ui
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
expose:
|
|
|
|
|
- "80"
|
|
|
|
|
read_only: true
|
|
|
|
|
# The only writable paths nginx needs. Everything else in the image is static.
|
|
|
|
|
tmpfs:
|
|
|
|
|
- /var/cache/nginx
|
|
|
|
|
- /var/run
|
|
|
|
|
mem_limit: "${MEMBY_ADMIN_MEMORY_LIMIT:-64m}"
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "wget", "-qO-", "http://127.0.0.1/healthz"]
|
|
|
|
|
interval: 30s
|
|
|
|
|
timeout: 5s
|
|
|
|
|
retries: 3
|
|
|
|
|
start_period: 5s
|
|
|
|
|
|
2026-07-27 08:16:20 +12:00
|
|
|
postgres:
|
|
|
|
|
image: postgres:17-alpine
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
environment:
|
|
|
|
|
POSTGRES_USER: memby
|
|
|
|
|
POSTGRES_PASSWORD: "${POSTGRES_PASSWORD:?set POSTGRES_PASSWORD in .env}"
|
|
|
|
|
POSTGRES_DB: memby
|
|
|
|
|
volumes:
|
|
|
|
|
- memby-postgres:/var/lib/postgresql/data
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD-SHELL", "pg_isready -U memby -d memby"]
|
|
|
|
|
interval: 10s
|
|
|
|
|
timeout: 5s
|
|
|
|
|
retries: 5
|
|
|
|
|
|
|
|
|
|
redis:
|
|
|
|
|
image: redis:7-alpine
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
command: ["redis-server", "--save", "", "--appendonly", "no", "--maxmemory", "256mb", "--maxmemory-policy", "allkeys-lru"]
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
|
|
|
interval: 10s
|
|
|
|
|
timeout: 5s
|
|
|
|
|
retries: 5
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
memby-postgres:
|
2026-07-27 21:06:51 +12:00
|
|
|
memby-releases:
|
2026-08-12 09:57:56 +12:00
|
|
|
memby-logs:
|