Skip to content

Commit

Permalink
upd8 CR
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeltman committed May 10, 2024
1 parent 361e106 commit b3fb7c7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/snyk-container-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build a Docker image
run: docker build -t dockerdaan/r510-denoiser:latest .
run: docker build -t ghcr.io/dbeltman/r510-denoiser:master .
- name: Run Snyk to check Docker image for vulnerabilities
# Snyk can be used to break the build when it detects vulnerabilities.
# In this case we want to upload the issues to GitHub Code Scanning
Expand All @@ -35,7 +35,7 @@ jobs:
# or you can signup for free at https://snyk.io/login
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
image: dockerdaan/r510-denoiser:latest
image: ghcr.io/dbeltman/r510-denoiser:master
args: --file=Dockerfile
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ Recently added remote IPMI support, but same principle stands


#### Docker Run
- `docker run --rm --name R510-Denoiser --device /dev/ipmi0:/dev/ipmi0 -e MQTTHOST=localhost -e DEVICENAME=MyServer dockerdaan/r510-denoiser:latest`
- `docker run --rm --name R510-Denoiser --device /dev/ipmi0:/dev/ipmi0 -e MQTTHOST=localhost -e DEVICENAME=MyServer ghcr.io/dbeltman/r510-denoiser:master`

#### Portainer
- Add new container with image `dockerdaan/r510-denoiser:latest`
- Add new container with image `ghcr.io/dbeltman/r510-denoiser:master`
- Add required Environment variables to the "Env" tab
- Add the following device mapping under the "Runtime & Resources" tab: `/dev/ipmi0:/dev/ipmi0`

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: '3'
services:
r510-denoiser:
image: dockerdaan:r510-denoiser:latest
image: ghcr.io/dbeltman/r510-denoiser:master
environment:
- MQTTHOST=MQTT-Server
- FANNAME=TESTFAN
Expand Down
2 changes: 1 addition & 1 deletion k8s/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: app
image: dockerdaan/r510-denoiser:experimental
image: ghcr.io/dbeltman/r510-denoiser:experimental
imagePullPolicy: Always
envFrom:
- secretRef:
Expand Down

0 comments on commit b3fb7c7

Please sign in to comment.