bind9/docker-compose.yml

21 lines
298 B
YAML
Raw Permalink Normal View History

2020-12-14 20:50:47 +00:00
version: '2'
services:
bind:
build: ./bind
hostname: bind
container_name: bind
restart: always
entrypoint:
2024-10-27 19:03:43 +00:00
- /etc/bind/entrypoint.sh
2020-12-14 20:50:47 +00:00
ports:
- "53:53"
- "53:53/udp"
volumes:
- ./bind:/etc/bind
networks:
bindnet:
2024-10-27 19:03:43 +00:00
2020-12-14 20:50:47 +00:00
networks:
bindnet: