Docker container for retrieving certificates from Let's Encrypt using a DNS challenge provided by MyDnsHost
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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