christianlempa-boilerplates/docker-compose/bind9/docker-compose.yaml

13 lines
273 B
YAML
Raw Normal View History

2023-05-25 14:26:13 +02:00
---
2022-01-19 11:06:26 +01:00
services:
bind9:
image: docker.io/ubuntu/bind9:9.18-23.10_edge
2022-01-19 11:06:26 +01:00
container_name: bind9
ports:
- "53:53"
volumes:
- /etc/bind/:/etc/bind/
- /var/cache/bind:/var/cache/bind
- /var/lib/bind:/var/lib/bind
2024-02-22 22:12:50 +01:00
restart: unless-stopped