certbot/certbot#5405
Just to let you know, I get this error when I try to obtain a Let's Encrypt certificate using your container.
Due to latest changes in Let's Encrypt bot the command that worked for me to get a certificate was (inside the container):
certbot --authenticator standalone --installer apache -d <domain.tld> -d <www.domain.tld> --pre-hook "apachectl stop" --post-hook "apachectl start"
Be sure to launch container with -e APACHE_ENABLE_PORT_80=true and -p 80:80 or the challenge will fail
certbot/certbot#5405
Just to let you know, I get this error when I try to obtain a Let's Encrypt certificate using your container.
Due to latest changes in Let's Encrypt bot the command that worked for me to get a certificate was (inside the container):
Be sure to launch container with
-e APACHE_ENABLE_PORT_80=trueand-p 80:80or the challenge will fail