Acme tool checks for valid autodiscover and autoconfig A records and skips non-existing names

Todo: Add AAAA check, add check for additional_san
This commit is contained in:
andryyy
2017-06-12 10:45:12 +02:00
parent 24887b00a8
commit ef62f6b383
2 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
FROM alpine:3.6
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
RUN apk add --update --no-cache \
bash \
acme-client \
curl \
openssl \
bind-tools
COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
ENTRYPOINT ["/srv/docker-entrypoint.sh"]