diff --git a/README.md b/README.md index 9289f8d..5145d23 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/dnscrypt/proxy/arm/docker-compose.yml b/dnscrypt/proxy/arm/docker-compose.yml index 163b79f..9706938 100644 --- a/dnscrypt/proxy/arm/docker-compose.yml +++ b/dnscrypt/proxy/arm/docker-compose.yml @@ -4,4 +4,4 @@ dnscrypt-proxy: ports: - "2053:53/tcp" - "2053:53/udp" - restart: always + restart: unless-stopped diff --git a/dnscrypt/server/docker-compose.yml b/dnscrypt/server/docker-compose.yml new file mode 100644 index 0000000..7de31cf --- /dev/null +++ b/dnscrypt/server/docker-compose.yml @@ -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