JonasAlfredsson / docker-nginx-certbot

Automatically create and renew website certificates for free using the Let's Encrypt certificate authority.
https://hub.docker.com/r/jonasal/nginx-certbot
MIT License
933 stars 168 forks source link

Add support for Gandi LiveDNS #122

Closed 5V715 closed 2 years ago

5V715 commented 2 years ago

there is certbot plugin at https://github.com/obynio/certbot-plugin-gandi would be nice to see that

JonasAlfredsson commented 2 years ago

Hi 5V715,

I am a little bit hesitant to add this since it is not part of the official dns plugins as far as I can tell. It also does not conform to the expected pip install certbot-dns-<plugin> format, so it will require special handling during the installation step and unless more people ask for this (or it becomes official) I would suggest you create your own Dockerfile:

FROM jonasal/nginx-certbot:3
RUN pip3 install -U certbot-plugin-gandi
ENV CERTBOT_DNS_AUTHENTICATORS  $CERTBOT_DNS_AUTHENTICATORS \
    gandi

I think that should be enough for it to work.

JonasAlfredsson commented 2 years ago

No response, reopen if this is still an issue.