2 Commits

Author SHA1 Message Date
Benjamin Kästner
3b09d94284 docs: add missing backslash in docker-run command 2024-08-01 10:27:19 +02:00
Florian Dörsch
5bcfae9b91 ci: fix attestation for dockerhub push 2024-07-31 11:23:18 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -56,6 +56,6 @@ jobs:
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-name: ${{ env.IMAGE_NAME }}
subject-name: docker.io/${{ env.IMAGE_NAME }}
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true

View File

@@ -80,7 +80,7 @@ docker run -it \
-v ./scripts:/opt/paessler/share/scripts:ro \
-v ./config:/config \
--cap-add NET_ADMIN \
--cap-add NET_RAW
--cap-add NET_RAW \
paessler/multi-platform-probe:latest
```