commit c29faa7e0903b113c8b931c3228aa80bb0549ef9 Author: fix Date: Sat Feb 27 20:51:54 2021 +0100 init diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1faa852 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.9-slim + +RUN pip install \ + certbot certbot-dns-rfc2136 + +CMD certbot --version diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..32d0b1a --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,9 @@ +version: '3' + +services: + certbot: + build: + context: ./ + image: certbot-pdns:local + restart: unless-stopped +