Bind9

---
services:
  bind9:
    container_name: dns-bind
    image: ubuntu/bind9:latest
    environment:
      - BIND9_USER=root
      - TZ=Europe/Berlin
    ports:
      - "53:53/tcp"
      - "53:53/udp"
    volumes:
      - ./bind9/config/:/etc/bind:rw
      - ./bind9/cache:/var/cache/bind
      - ./bind9/records:/var/lib/bind
    network_mode: host
    restart: unless-stopped
    labels:
      - com.centurylinklabs.watchtower.enable=true

Mis à jour