mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 21:33:02 +01:00
add dnscrypt-server
This commit is contained in:
@@ -268,7 +268,8 @@ A collection of delicious docker recipes.
|
|||||||
- [x] chinadns
|
- [x] chinadns
|
||||||
- [x] dnscrypt
|
- [x] dnscrypt
|
||||||
- [x] dnscrypt-proxy
|
- [x] dnscrypt-proxy
|
||||||
- [x] dnscrypt-wrapper
|
- [x] dnscrypt-server
|
||||||
|
- [x] ~dnscrypt-wrapper~
|
||||||
- [x] dnsmasq
|
- [x] dnsmasq
|
||||||
- [x] dnsmasq-arm
|
- [x] dnsmasq-arm
|
||||||
- [x] pdnsd
|
- [x] pdnsd
|
||||||
|
|||||||
@@ -4,4 +4,4 @@ dnscrypt-proxy:
|
|||||||
ports:
|
ports:
|
||||||
- "2053:53/tcp"
|
- "2053:53/tcp"
|
||||||
- "2053:53/udp"
|
- "2053:53/udp"
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
|
|||||||
14
dnscrypt/server/docker-compose.yml
Normal file
14
dnscrypt/server/docker-compose.yml
Normal 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
|
||||||
Reference in New Issue
Block a user