Closed ab623 closed 9 years ago
There was some DNS issues in #4 Can you see what's inside /etc/resolv.conf? I'm guessing that your DNS server setup has gone wrong somehow. If that is the case, as you can see in issue 4 there is a workaround for this. See RESOLV_OVERRIDE parameter described in README. Related: https://github.com/docker/docker/issues/541
Did you notice that the script was trying to set the resolv.conf file even though I didn't specify the ENV variable.
Overriding resolv.conf...
I went to the transmission/start.sh and commented out the following line (23):
# printf "$RESOLV_OVERRIDE" > /etc/resolv.conf
and i had no issues building and running the container.
I think there's an issue with the ENV variable setting the wrong info. Is this becuase its not wrapped in {}?
The {} wrapping in environment-variables.sh file is only for transmission related settings. The resolv override happens before this.
I haven't seen that error before, no. It doesn't occur on my host (running xubuntu), and as you say it doesn't happen in the trusted build images either. So it's probably something on your host system?
I'll run an apt-get upgrade to see if there are any recent docker changes, and will try again. Thanks
Updated docker version and this resolved this issue. Raised PR #21 to ensure this wont happen again to future people.
So I don't know if this is an issue or not, but I'm seeing some weird behaviour.
When I run the following default script, everything works fine.
but if I do
I get the following messages when I run
docker logs containerid
It won't connect at all, which is weird.
Any ideas?