Requests Let's Encrypt certificates using a user-supplied DNS hook
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 276B

12345678910111213141516
  1. FROM ubuntu:xenial
  2. MAINTAINER Chris Smith <dle@chameth.com>
  3. RUN apt-get update \
  4. && apt-get install -y \
  5. curl \
  6. inotify-tools
  7. COPY dehydrated run.sh config /
  8. RUN chmod +x /run.sh /dehydrated
  9. VOLUME ["/letsencrypt"]
  10. ENTRYPOINT ["/bin/bash"]
  11. CMD ["/run.sh"]