mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-02-17 02:50:46 +01:00
14 lines
264 B
YAML
14 lines
264 B
YAML
|
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
|