1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00

add docker-compose.yml for arm

This commit is contained in:
kev 2016-04-14 02:19:45 +08:00
parent 2cdb51748b
commit 11be4e4502
2 changed files with 21 additions and 0 deletions

@ -0,0 +1,4 @@
no-hosts
no-resolv
cache-size=10000
server=127.0.0.1#2053

@ -0,0 +1,17 @@
dnsmasq:
image: easypi/dnsmasq-arm
volumes:
- ./dnsmasq.d:/etc/dnsmasq.d
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