From 56f937643044de841dad96ad8599edaf3e401af8 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Fri, 31 Oct 2025 17:53:15 +0100 Subject: [PATCH] Fix: Workflow testet jetzt Container-Namen 'registry:5000' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fügt 'registry:5000' als erste Option hinzu - Container-Name funktioniert wenn docker-dind Zugriff auf traefik-public hat --- .gitea/workflows/production-deploy.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/production-deploy.yml b/.gitea/workflows/production-deploy.yml index 4fa4cbcd..c0d8f16a 100644 --- a/.gitea/workflows/production-deploy.yml +++ b/.gitea/workflows/production-deploy.yml @@ -209,9 +209,13 @@ jobs: # Teste verschiedene Registry-URLs REGISTRY_URLS=( - "$REGISTRY_URL" - "$DEPLOYMENT_HOST" - "registry.michaelschiemer.de" + "registry:5000" # Container-Name (funktioniert wenn docker-dind Zugriff auf traefik-public hat) + "$DEPLOYMENT_HOST:5000" # Direkter Zugriff auf Host Port 5000 (HTTP) + "host.docker.internal:5000" # Docker Host (Mac/Windows) + "$HOST_IP:5000" # Gateway-IP (Linux) + "$DEPLOYMENT_HOST" # Host IP (HTTPS via Traefik, falls erreichbar) + "$REGISTRY_URL" # Externe Domain + "registry.michaelschiemer.de" # Alternative Domain ) LOGIN_SUCCESS=false