Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add duckdns dns-01 challenge plugin #281

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM nginx:1.27.0
LABEL maintainer="Jonas Alfredsson <[email protected]>"

ENV CERTBOT_DNS_AUTHENTICATORS \

Check warning on line 4 in src/Dockerfile

View workflow job for this annotation

GitHub Actions / docker_buildx_debian

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
cloudflare \
cloudxns \
digitalocean \
Expand All @@ -17,7 +17,8 @@
route53 \
sakuracloud \
ionos \
bunny
bunny \
duckdns

# Needed in order to install Python packages via PIP after PEP 668 was
# introduced, but I believe this is safe since we are in a container without
Expand Down
3 changes: 2 additions & 1 deletion src/Dockerfile-alpine
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM nginx:1.27.0-alpine
LABEL maintainer="Jonas Alfredsson <[email protected]>"

ENV CERTBOT_DNS_AUTHENTICATORS \

Check warning on line 4 in src/Dockerfile-alpine

View workflow job for this annotation

GitHub Actions / docker_buildx_alpine

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
cloudflare \
cloudxns \
digitalocean \
Expand All @@ -17,7 +17,8 @@
route53 \
sakuracloud \
ionos \
bunny
bunny \
duckdns

# Needed in order to install Python packages via PIP after PEP 668 was
# introduced, but I believe this is safe since we are in a container without
Expand Down
Loading