<div dir="ltr">Hello everyone,<br><br>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".<br><br>Normally you can do this via the file /etc/default/named (In the options variable). Unfortunately, this file is ignored. I also tried it with the "Environment" parameter in docker-compose.yml, but this does not work either.<br><br>What possibility do I have to give options to the named daemon without redefining the start command completely (e.g. via "command")?<br><br>This is my docker-compose.yml<br><br><br>version: '3.8'<br>services:<br>  bind:<br>    image: internetsystemsconsortium/bind9:9.16<br>    container_name: bind<br>    volumes:<br>      - ./etc/bind:/etc/bind<br>      - ./etc/default/named:/etc/default/named<br>      - ./var/cache/bind:/var/cache/bind<br>      - ./var/lib/bind:/var/lib/bind<br>      - ./var/log:/var/log<br>    ports:<br>      - 53:53/udp<br>      - 53:53/tcp<br>      - 127.0.0.1:953:953/tcp<br>    restart: always<br></div>