bind9/docker-compose.yml

23 lines
324 B
YAML
Raw Normal View History

2020-12-14 20:50:47 +00:00
version: '2'
services:
bind:
build: ./bind
hostname: bind
container_name: bind
restart: always
env_file:
- env
2020-12-14 20:50:47 +00:00
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: