build: fix yaml indentation and port in deploy.yml
All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 35s

This commit is contained in:
DanielS
2026-07-06 00:35:17 +02:00
parent 3481241a52
commit 139ed18278

View File

@@ -38,14 +38,14 @@ jobs:
# Schreibt die Docker Compose Datei sauber ohne Einrückung
cat << 'EOF' > docker-compose.yml
version: '3.8'
services:
version: '3.8'
services:
website:
image: gitea.hephex.de/daniel/ndsolutionswebsite:latest
restart: always
ports:
- "8080:80"
EOF
- "8080:8080"
EOF
echo "${{ secrets.REGISTRY_TOKEN }}" | docker login gitea.hephex.de -u "${{ secrets.REGISTRY_USER }}" --password-stdin
docker compose pull