From 9b023452372222b51e31d96d3b286f39ec855c75 Mon Sep 17 00:00:00 2001 From: Julien Escario Date: Fri, 19 Feb 2021 17:47:26 +0100 Subject: [PATCH] Added acme-dns initial docker-compose --- docker/acme-dns.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docker/acme-dns.yaml diff --git a/docker/acme-dns.yaml b/docker/acme-dns.yaml new file mode 100644 index 0000000..7ca7275 --- /dev/null +++ b/docker/acme-dns.yaml @@ -0,0 +1,15 @@ +version: '2' +services: + acmedns: + build: + context: . + dockerfile: Dockerfile + image: joohoi/acme-dns:latest + ports: + - "443:443" + - "53:53" + - "53:53/udp" + - "80:80" + volumes: + - ./config:/opt/opt/acme-dns/config:ro + - ./data:/opt/acme-dns/data