You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dnscrypt-server-docker/docker-compose.yml

18 lines
371 B
YAML

version: "4"
services:
dnscrypt:
image: jedisct1/dnscrypt-server:latest
container_name: dnscrypt
restart: always
command: "init -N example.com -E '127.0.0.1:5443'"
# command: "start"
ports:
- '5443:5443/udp'
- '5443:5443/tcp'
volumes:
- keys:/opt/encrypted-dns/etc/keys
environment:
- TZ='UTC'
volumes:
keys: