# DRY RUN - ensure certificates CAN be created docker compose run --rm certbot certonly --webroot --webroot-path /var/www/certbot/ --dry-run -d example.org # PROD RUN - generate certificates for the provided site docker compose run --rm certbot certonly --webroot --webroot-path /var/www/certbot/ -d example.org # RENEW CERTIFICATES - run every 3 months docker compose run --rm certbot renew