ci: Gitea Action für automatischen Docker-Build und Registry-Push hinzugefügt

This commit is contained in:
scriptos
2026-03-26 21:21:22 +01:00
parent 7bf847d31c
commit d77961818a
3 changed files with 45 additions and 3 deletions
+3
View File
@@ -47,6 +47,9 @@
│ │ └── teamspeak3.xml # TeamSpeak3-Konfiguration fuer XAseco
│ └── db/
│ └── init-xaseco-db.sh # MariaDB Init-Script fuer XAseco-DB
├── .gitea/
│ └── workflows/
│ └── docker-publish.yml # CI/CD: Docker Image Build & Push bei neuem Release-Tag
├── docs/ # Dokumentation
├── docker-compose.yml # Docker Compose Konfiguration
├── Dockerfile # Docker Build-Definition
+1 -3
View File
@@ -43,11 +43,9 @@ Die Konfiguration erfolgt über die `.env`-Datei, die automatisch eingelesen wir
Alternativ kannst du das Image auch selbst bauen:
```bash
docker build -t tmserver:latest -t tmserver:1.3.0 .
docker build -t tmserver:latest .
```
Damit wird das Image mit zwei Tags erstellt: `tmserver:latest` und `tmserver:1.3.0`.
Anschließend den Server starten:
```bash