profilarr: use Docker Hub image (santiagosayshey), not GHCR

The ghcr.io/dictionarry-hub/profilarr path mentioned in some docs isn't
publicly pullable — anonymous token requests get 403. Canonical image is
santiagosayshey/profilarr:latest on Docker Hub per the upstream README.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-04-30 20:05:30 +01:00
parent a9649be705
commit 98ccee2221

View file

@ -14,7 +14,9 @@
];
virtualisation.oci-containers.containers.profilarr = {
image = "ghcr.io/dictionarry-hub/profilarr:latest";
# Canonical image lives on Docker Hub (santiagosayshey is the maintainer);
# the Dictionarry-Hub GHCR path that some docs mention isn't publicly pullable.
image = "santiagosayshey/profilarr:latest";
volumes = [
"/var/lib/profilarr:/config"
];