mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:14:57 +02:00
18 lines
348 B
YAML
18 lines
348 B
YAML
dnsmasq:
|
|
image: easypi/dnsmasq-arm
|
|
volumes:
|
|
- ./dnsmasq.conf:/etc/dnsmasq.d/dnsmasq.conf
|
|
net: container:dnscrypt
|
|
restart: always
|
|
|
|
dnscrypt:
|
|
image: easypi/dnscrypt-proxy-arm
|
|
command: dnscrypt-proxy -a 127.0.0.1:2053 -R cisco
|
|
ports:
|
|
- "53:53/tcp"
|
|
- "53:53/udp"
|
|
- "67:67/udp"
|
|
cap_add:
|
|
- NET_ADMIN
|
|
restart: always
|