From 642ce4bdcd7a8612f5e8e553d678099e4854cb14 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 8 May 2026 14:42:38 +0200 Subject: [PATCH] feat: use pull-through cache for Docker Hub images Replace docker.io references with cr.simoncor.net/dockerhub pull-through cache. Official images now use explicit library/ namespace for cache compatibility. --- tasks/mariadb.yaml | 2 +- tasks/phpipam.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/mariadb.yaml b/tasks/mariadb.yaml index dd22a27..3d40aba 100644 --- a/tasks/mariadb.yaml +++ b/tasks/mariadb.yaml @@ -33,7 +33,7 @@ # run mariadb name: "phpipam-db" - image: "docker.io/library/mariadb:{{ mariadb_version }}" + image: "cr.simoncor.net/dockerhub/library/mariadb:{{ mariadb_version }}" image_name_mismatch: "recreate" restart_policy: "unless-stopped" networks: diff --git a/tasks/phpipam.yaml b/tasks/phpipam.yaml index 916b235..0434089 100644 --- a/tasks/phpipam.yaml +++ b/tasks/phpipam.yaml @@ -22,7 +22,7 @@ state: "started" tty: "no" name: "phpipam-app" - image: "docker.io/phpipam/phpipam-www:v1.8.0" + image: "cr.simoncor.net/dockerhub/phpipam/phpipam-www:v1.8.0" image_name_mismatch: "recreate" restart_policy: "unless-stopped" networks: @@ -69,7 +69,7 @@ state: "started" tty: "no" name: "phpipam-cron" - image: "docker.io/phpipam/phpipam-cron:v1.8.0" + image: "cr.simoncor.net/dockerhub/phpipam/phpipam-cron:v1.8.0" image_name_mismatch: "recreate" restart_policy: "unless-stopped" networks: