mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 08:13:18 +01:00
13 lines
273 B
YAML
13 lines
273 B
YAML
---
|
|
services:
|
|
bind9:
|
|
image: docker.io/ubuntu/bind9:9.18-23.10_edge
|
|
container_name: bind9
|
|
ports:
|
|
- "53:53"
|
|
volumes:
|
|
- /etc/bind/:/etc/bind/
|
|
- /var/cache/bind:/var/cache/bind
|
|
- /var/lib/bind:/var/lib/bind
|
|
restart: unless-stopped
|