Re: Options for named startup docker

2021-02-03 Thread Bob Harold
On Mon, Feb 1, 2021 at 10:29 AM Christian Link wrote: > Hello everyone, > > I am using the BIND Docker image in a Docker Compose setup. In this setup > I would like to disable ipv4 and start the named daemon with the option > "-4". > "-4" means "use IPv4 only" Perhaps you want "-6" to use IPv6 o

Re: Options for named startup docker

2021-02-01 Thread Felipe Agnelli Barbosa
Hi, I think it is better to build your own image. So then, in the build(bind.dockerfile) you can pass the arguments, like: RUN: ENTRYPOINT: etc. OR(maybe), you can put explicitly in the conf file(named.conf): listen-on { none; }; listen-on-v6 { any; }; []s Felipe Em seg., 1 de fev. de 2021

Options for named startup docker

2021-02-01 Thread Christian Link
Hello everyone, I am using the BIND Docker image in a Docker Compose setup. In this setup I would like to disable ipv4 and start the named daemon with the option "-4". Normally you can do this via the file /etc/default/named (In the options variable). Unfortunately, this file is ignored. I also t