Docker/Bind9/docker-compose.yaml
2024-04-02 21:58:31 +02:00

13 lines
255 B
YAML

---
services:
bind9:
container_name: dns-prod-1
image: ubuntu/bind9:9.18-23.04_edge
environment:
- BIND9_USER=root
- TZ=Europe/Berlin
volumes:
- ./config/:/etc/bind:rw
network_mode: host
restart: unless-stopped