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 343B

1234567891011121314151617
  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. libffi-dev \
  9. libssl-dev
  10. RUN pip3 install \
  11. git+https://github.com/mydnshost/mydnshost-python-api.git
  12. ADD hook.sh /dns/hook
  13. RUN chmod +x /dns/hook