chore: update ci-cd.yml

This commit is contained in:
2025-07-17 22:54:27 +02:00
parent ecbaf217be
commit 3bcf088f3f

View File

@@ -5,8 +5,8 @@ on:
branches: [ main, develop ]
env:
REGISTRY_URL: localhost:5000
GITEA_URL: localhost:3000
REGISTRY_URL: 127.0.0.1:5000
GITEA_URL: 127.0.0.1:3000
IMAGE_NAME: michaelschiemer
jobs:
@@ -21,12 +21,14 @@ jobs:
cat /etc/hosts
echo "IP-Konfiguration:"
ip addr
echo "Testing Gitea connectivity (lokale Adresse):"
curl -v --connect-timeout 10 http://${GITEA_URL} || echo "❌ Cannot reach Gitea"
echo "Testing Registry connectivity (lokale Adresse):"
curl -v --connect-timeout 10 http://${REGISTRY_URL}/v2/ || echo "❌ Cannot reach Registry"
echo "Alternativer Verbindungstest zum Host:"
ping -c 2 localhost || echo "❌ Cannot ping localhost"
echo "Network interfaces:"
ifconfig || ip addr
echo "Testing Gitea connectivity (127.0.0.1):"
curl -s -o /dev/null -w "%{http_code} - Gitea Status\n" http://${GITEA_URL} || echo "❌ Cannot reach Gitea"
echo "Testing Registry connectivity (127.0.0.1):"
curl -s -o /dev/null -w "%{http_code} - Registry Status\n" http://${REGISTRY_URL}/v2/ || echo "❌ Cannot reach Registry"
echo "Alternativer lokaler Test:"
curl -s -o /dev/null -w "%{http_code}\n" http://127.0.0.1:3000 || echo "❌ Cannot reach Gitea via 127.0.0.1"
- name: Checkout Code
uses: actions/checkout@v4