From 784a0fbec1afe06bf199d3540be0e52f9020453d Mon Sep 17 00:00:00 2001 From: Josh Cain Date: Tue, 14 Jul 2026 09:35:12 -0400 Subject: [PATCH] Fix unavailable image references Four services referenced images that don't exist in any registry, so a fresh `docker compose up -d` fails to pull even though `docker compose config` parses cleanly: - watchlistarr/watchlistarr -> nylonee/watchlistarr - cleanarr/cleanarr -> selexin/cleanarr - requestrr/requestrr -> thomst08/requestrr - ghcr.io/aetaric/checkrr:latest -> :latest-amd64 checkrr publishes no multi-arch tag (every tag is arch-suffixed), which is why bare `:latest` 404s; added a comment so arm64 users know to swap the suffix. Fixes #42 Co-Authored-By: Claude Opus 4.8 --- docker-compose.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 342fc62..f77044d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -258,7 +258,7 @@ services: # ============ MEDIA CENTER ============ watchlistarr: container_name: watchlistarr - image: watchlistarr/watchlistarr + image: nylonee/watchlistarr networks: - download_network environment: @@ -330,9 +330,12 @@ services: restart: unless-stopped # 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`. checkrr: container_name: checkrr - image: ghcr.io/aetaric/checkrr:latest + image: ghcr.io/aetaric/checkrr:latest-amd64 networks: - media_network ports: @@ -346,7 +349,7 @@ services: cleanarr: container_name: cleanarr - image: cleanarr/cleanarr + image: selexin/cleanarr networks: - download_network environment: @@ -357,7 +360,7 @@ services: requestrr: container_name: requestrr - image: requestrr/requestrr + image: thomst08/requestrr networks: - download_network ports: