1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-25 02:04:06 +02:00

add dnscrypt-server

This commit is contained in:
kev 2020-03-09 15:53:31 +08:00
parent 621aead825
commit cef39dacca
3 changed files with 17 additions and 2 deletions

View File

@ -268,7 +268,8 @@ A collection of delicious docker recipes.
- [x] chinadns
- [x] dnscrypt
- [x] dnscrypt-proxy
- [x] dnscrypt-wrapper
- [x] dnscrypt-server
- [x] ~dnscrypt-wrapper~
- [x] dnsmasq
- [x] dnsmasq-arm
- [x] pdnsd

View File

@ -4,4 +4,4 @@ dnscrypt-proxy:
ports:
- "2053:53/tcp"
- "2053:53/udp"
restart: always
restart: unless-stopped

View File

@ -0,0 +1,14 @@
dnscrypt-server:
image: jedisct1/dnscrypt-server
container_name: dnscrypt-server
# command: init -N easypi.pro -E 192.168.1.1:443
ports:
- "443:443/tcp"
- "443:443/udp"
volumes:
- ./data:/opt/encrypted-dns/etc/keys
ulimits:
nofile:
soft: 90000
hard: 90000
restart: unless-stopped