Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ TRANSMISSION_RPC_PASSWORD=
# Host port to expose Grafana on. Defaults to 3000 if unset.
GRAFANA_PORT=3000

# ============ Checkrr ============
# checkrr has no multi-arch image; every tag is architecture-suffixed.
# Defaults to latest-amd64. On arm64 hosts, set this to latest-arm64v8.
CHECKRR_IMAGE_TAG=latest-amd64

# ============ Decluttarr (queue cleanup for Radarr/Sonarr) ============
# These keys come from Radarr's Settings -> General -> API Key (and Sonarr's
# equivalent) AFTER the stack is running. Decluttarr starts fine with them
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -331,11 +331,11 @@ services:

# Scans media files for codec / corruption issues. Web UI on :8585.
# checkrr publishes no multi-arch tag — every tag is arch-suffixed, so there
# is no bare `latest`. amd64 hosts use `latest-amd64`; arm64 hosts must swap
# this to `latest-arm64v8`.
# is no bare `latest`. Defaults to amd64; arm64 hosts set
# CHECKRR_IMAGE_TAG=latest-arm64v8 in .env instead of editing this file.
checkrr:
container_name: checkrr
image: ghcr.io/aetaric/checkrr:latest-amd64
image: ghcr.io/aetaric/checkrr:${CHECKRR_IMAGE_TAG:-latest-amd64}
networks:
- media_network
ports:
Expand Down
Loading