33 lines
833 B
YAML
33 lines
833 B
YAML
---
|
|
networks:
|
|
dns_local_net:
|
|
external: true
|
|
|
|
services:
|
|
dnsdist1:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
container_name: dnsdist1
|
|
image: docker-registry1.in.thelinuxpro.net:5000/tlp/dnsdist:250225.0.03
|
|
networks:
|
|
dns_local_net:
|
|
ipv4_address: 10.200.53.251
|
|
restart: always
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/resolv.conf:/etc/resolv.conf:ro
|
|
dnsdist2:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
container_name: dnsdist2
|
|
image: docker-registry1.in.thelinuxpro.net:5000/tlp/dnsdist:250225.0.03
|
|
networks:
|
|
dns_local_net:
|
|
ipv4_address: 10.200.53.252
|
|
restart: always
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/resolv.conf:/etc/resolv.conf:ro
|