Error while using lets encrypt
Hello, when I am using command:
sudo docker run -i -t -p 80:80 -p 443:443 -e LETS_ENCRYPT_DOMAIN=your_domain -e LETS_ENCRYPT_MAIL=your_mail onlyoffice
where "onlyoffice" was build by "docker build . -t onlyoffice",
I have this problem:
And when I using normal email, I have this problem:

Same here. Specifying domain and mail in compose environment, but certbot says that challenges have failed. How to modify certbot startup parameters to include -v?
Hello @AndreySolod Sorry for late response!
Could you clarify: are you using a custom-built image named onlyoffice, or did you mean to use the official onlyoffice/documentserver image?
If you built your own image, it likely doesn't include the Let's Encrypt integration scripts that are present in the official image.
If you intended to use the official image, your command has several syntax errors...
sudo docker run -i -t -d -p 80:80 -p 443:443 --restart=always \
-e LETS_ENCRYPT_DOMAIN=example.com \
-e [email protected] \
-e JWT_SECRET=my_jwt_secret \
onlyoffice/documentserver
Replace example.com and [email protected] with your actual domain and email address.
Hello @Sciti Sorry for late response! Thank you for the information about the certbot verbose logging issue. I've created enhancement 76523 based on your feedback.
This issue was closed due to no response.