Bobin Joseph

Results 32 comments of Bobin Joseph

Hey @qdm12 , Thank you. I am not seeing that config if I pull the docker hub image or build from source. Am I missing something?

Hey @qdm12 , Happy new year. Thank you for this. So this seems to work. However I did find that in the latest docker image the `DNS_KEEP_NAMESERVER` setting does not...

Also, here is the key bits of the docker-compose.yml config. The only things that does not seem to work is `DNS_KEEP_NAMESERVER=on`. So I have to edit the `/etc/resolv.conf` file manually....

I am using the latest pulled image from docker hub. In my config I am specifying the use of gluten itself as the dns server. When I set `/etc/resolv.conf` to...

> A DNS proxy inside gluetun could handle that for the user, although it might be quite some code to add 😕 Yup. For my setup, the static IP works....

Hey @qdm12 , I just pulled the latest docker image and it looks like `DNS_KEEP_NAMESERVER=on`env variable is still not honored The dns server is /etc/resolv.conf is set to 127.0.0.1 and...

Hey @qdm12 , Long time.... I just pulled the latest image. I have set the option `DNS_KEEP_NAMESERVER=on` but my resolv.conf look like this. Any way to ensure that 127.0.0.11 stays...

Just to update. I worked around this issue by mapping a file locally. ``` volumes: - /home/ubuntu/docker/gluetun-resolv.conf:/etc/resolv.conf:ro ``` This is my file ``` nameserver 127.0.0.11 nameserver 127.0.0.1 nameserver 1.1.1.1 search...

Hi @denizdogan, so your `shady` container does not really have a network of its own. It is sharing the network of the `vpn` container. `vpn` and `shady` can talk to...