Currently the certbot container renews site certificates from Letsencrypt automatically when the certificate is about to expire and stores it in the data directory. However nginx container, if not restarted manually will not reload the renewed certificate, result in a warning when visiting the site.
To bypass this issue, start a shell in the web container and run nginx -s reload to reload the certificate manually.
A revision is needed to automate this procedure.
Currently the certbot container renews site certificates from Letsencrypt automatically when the certificate is about to expire and stores it in the data directory. However nginx container, if not restarted manually will not reload the renewed certificate, result in a warning when visiting the site. To bypass this issue, start a shell in the web container and run
nginx -s reload
to reload the certificate manually. A revision is needed to automate this procedure.