Fix indentation in docker-compose.yml generator

This commit is contained in:
DanielS
2026-07-01 00:24:03 +02:00
parent 10d61dac86
commit 0f29e97b20

View File

@@ -43,14 +43,14 @@ jobs:
# Erstellt die docker-compose.yml mit korrektem Port-Mapping
cat << 'EOF' > docker-compose.yml
version: '3.8'
services:
website:
image: gitea.hephex.de/daniel/websitedummy:latest
restart: always
ports:
- "8080:8080"
EOF
version: '3.8'
services:
website:
image: gitea.hephex.de/daniel/websitedummy:latest
restart: always
ports:
- "8080:8080"
EOF
echo "${{ secrets.REGISTRY_TOKEN }}" | docker login gitea.hephex.de -u "${{ secrets.REGISTRY_USER }}" --password-stdin
docker compose pull