ci: setup CI/CD pipeline with Gitea Actions and secrets configuration
This commit is contained in:
30
.gitea/workflows/REGISTRY_INFO.md
Normal file
30
.gitea/workflows/REGISTRY_INFO.md
Normal file
@@ -0,0 +1,30 @@
|
||||
# Docker Registry Information
|
||||
|
||||
## Registry Details
|
||||
|
||||
- **URL**: `git.michaelschiemer.de:5000` (intern) oder `registry.michaelschiemer.de` (via Traefik)
|
||||
- **Standard Credentials**:
|
||||
- **Username**: `admin`
|
||||
- **Password**: `registry-secure-password-2025`
|
||||
|
||||
⚠️ **WICHTIG**: Das Passwort sollte in Produktion geändert werden!
|
||||
|
||||
## Für Gitea Secrets
|
||||
|
||||
Verwende folgende Werte in den Gitea Repository Secrets:
|
||||
|
||||
- **REGISTRY_USER**: `admin`
|
||||
- **REGISTRY_PASSWORD**: `registry-secure-password-2025` (oder das aktuell gesetzte Passwort)
|
||||
|
||||
## Registry Test
|
||||
|
||||
```bash
|
||||
# Login testen
|
||||
echo "registry-secure-password-2025" | docker login git.michaelschiemer.de:5000 -u admin --password-stdin
|
||||
|
||||
# Images auflisten
|
||||
curl -u admin:registry-secure-password-2025 http://git.michaelschiemer.de:5000/v2/_catalog
|
||||
|
||||
# Oder via Traefik (HTTPS)
|
||||
curl -u admin:registry-secure-password-2025 https://registry.michaelschiemer.de/v2/_catalog
|
||||
```
|
||||
Reference in New Issue
Block a user