19 lines
379 B
YAML
19 lines
379 B
YAML
version: "3"
|
|
|
|
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
|
services:
|
|
server:
|
|
container_name: dns-proxy
|
|
# hostname: pihole.lan.ddnsgeek.com
|
|
image: gists/dnscrypt-proxy
|
|
environment:
|
|
LOCAL_PORT: 5353
|
|
networks:
|
|
- traefik_default
|
|
ports:
|
|
- 5353:5353
|
|
networks:
|
|
traefik_default:
|
|
external: true
|
|
|