Merge pull request 'fix: add dns' (#9) from dev-v0.7.x into main
Some checks failed
Build and Publish Docker Image / build-and-push (push) Has been cancelled
Build and Publish Docker Image (Semantic Cache) / build-and-push-semantic (push) Has been cancelled

Reviewed-on: https://bitfreedom.net/code/code/nomyo-ai/nomyo-router/pulls/9
This commit is contained in:
Alpha Nerd 2026-04-02 17:18:02 +02:00
commit e66d5f5fb1
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ jobs:
- name: Start Docker daemon
run: |
dockerd --host=unix:///var/run/docker.sock --iptables=false > /tmp/dockerd.log 2>&1 &
dockerd --host=unix:///var/run/docker.sock --iptables=false --dns=8.8.8.8 --dns=8.8.4.4 > /tmp/dockerd.log 2>&1 &
for i in $(seq 1 30); do
sleep 2
docker info > /dev/null 2>&1 && echo "Docker daemon ready" && exit 0

View file

@ -30,7 +30,7 @@ jobs:
- name: Start Docker daemon
run: |
dockerd --host=unix:///var/run/docker.sock --iptables=false > /tmp/dockerd.log 2>&1 &
dockerd --host=unix:///var/run/docker.sock --iptables=false --dns=8.8.8.8 --dns=8.8.4.4 > /tmp/dockerd.log 2>&1 &
for i in $(seq 1 30); do
sleep 2
docker info > /dev/null 2>&1 && echo "Docker daemon ready" && exit 0