Docker container for retrieving certificates from Let's Encrypt using a DNS challenge provided by MyDnsHost
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 305B

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. git \
  6. python3 \
  7. python3-pip
  8. RUN pip3 install \
  9. git+https://github.com/mydnshost/mydnshost-python-api.git
  10. ADD hook.sh /dns/hook
  11. RUN chmod +x /dns/hook