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

14 lines
264 B
YAML
Raw Normal View History

2022-01-19 11:06:26 +01:00
version: '3'
services:
bind9:
image: ubuntu/bind9:latest
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