infrastructure/ansible/roles/docker/files/dnsmasq/docker-compose.yml

12 lines
305 B
YAML
Raw Normal View History

2020-01-28 22:15:14 +00:00
version: "3"
services:
vpn-dns:
image: programster/dnsmasq:latest
container_name: vpn-dns
ports:
- "{{ wireguard.clients.intersect.ip }}:53:53/udp"
volumes:
- ./dnsmasq.conf:/etc/dnsmasq.conf:ro
- ./vpn-hosts.conf:/etc/dnsmasq-hosts.conf:ro
restart: unless-stopped