diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 3c5842b..6e40c9f 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -38,14 +38,14 @@ jobs: # Schreibt die Docker Compose Datei sauber ohne Einrückung cat << 'EOF' > docker-compose.yml -version: '3.8' -services: - website: - image: gitea.hephex.de/daniel/ndsolutionswebsite:latest - restart: always - ports: - - "8080:80" -EOF + version: '3.8' + services: + website: + image: gitea.hephex.de/daniel/ndsolutionswebsite: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