From 065a0905daac0f55b50cb3f5c02c3caf62f74917 Mon Sep 17 00:00:00 2001 From: John Coffey Date: Sun, 20 Sep 2026 22:49:14 -0700 Subject: [PATCH] Point image references at the new registry ghcr.io went dark with the GitHub account, so every `docker pull` and template that named it has been failing. The images are republished, multi-arch as before, at registry.coffeylabs.org under the same names, and pull anonymously -- nothing needs a login. Where a link pointed at an issue list, it now goes to /-/work_items: in GitLab 19 that is the public list, and /-/issues returns 404 to anyone not signed in. Issues themselves did not come across from GitHub, so a link to a specific old issue is replaced with a note saying where it was. --- docker-compose.host.yml | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.host.yml b/docker-compose.host.yml index ede0dcb..312ba3c 100644 --- a/docker-compose.host.yml +++ b/docker-compose.host.yml @@ -11,7 +11,7 @@ # IHASVPN_TLS_SELF_SIGNED to reach it from elsewhere. services: ihasvpn: - image: ghcr.io/coffey-labs/ihasvpn:latest + image: registry.coffeylabs.org/coffey-labs/ihasvpn:latest container_name: ihasvpn restart: unless-stopped network_mode: host diff --git a/docker-compose.yml b/docker-compose.yml index 572d61c..98045f0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ # docker-compose.host.yml (host networking) and which host sysctls matter. services: ihasvpn: - image: ghcr.io/coffey-labs/ihasvpn:latest + image: registry.coffeylabs.org/coffey-labs/ihasvpn:latest container_name: ihasvpn restart: unless-stopped cap_add: -- 2.54.0