Files
IndigoFox 9f2473801c Initial commit
TODO: change api.conf URL references to use environment variables and add these variables to the docker-compose configuration for host domain
2023-03-28 00:08:50 -07:00

9 lines
399 B
Plaintext

# 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