Obtains certificates from Let's Encrypt, using Lexicon to answer DNS-based challenges
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Dockerfile 277B

123456789101112131415
  1. FROM csmith/letsencrypt-generic:latest
  2. MAINTAINER Chris Smith <dke@chameth.com>
  3. RUN apt-get update \
  4. && apt-get install -y \
  5. inotify-tools \
  6. python3 \
  7. python3-pip
  8. RUN pip3 install \
  9. dns-lexicon==2.1.10
  10. ADD hook.sh /dns/hook
  11. RUN chmod +x /dns/hook