Skip to content

Commit

Permalink
adding network host step
Browse files Browse the repository at this point in the history
  • Loading branch information
AAPohl authored Mar 3, 2024
1 parent c3ce3c5 commit 4da9c40
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ jobs:
- name: Run knxd Container (no net host)
run: |
pwd
docker run -p 3671:3671 -p 6720:6720 knxd:latest knxd -e 1.1.244 -E 1.1.246:8 --send-delay=30 -B single -b ipt:192.168.178.39 -c -DTRS
docker run -p 3671:3671 -p 6720:6720 knxd:latest knxd -e 1.1.244 -E 1.1.246:8 -f9 --send-delay=30 -B single -b ipt:192.168.178.39 -c -DTRS
timeout-minutes: 1
continue-on-error: true
- name: Run knxd Container (with net host)
run: |
pwd
docker run --network host knxd:latest knxd -e 1.1.244 -E 1.1.246:8 -f9 --send-delay=30 -B single -b ipt:192.168.178.39 -c -DTRS
timeout-minutes: 1
continue-on-error: true

0 comments on commit 4da9c40

Please sign in to comment.