We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker run -e REGION=YOUR_REGEION -e ACCESS_KEY_ID=YOUR_ACCESS_KEY -e ACCESS_KEY_SECRET=YOUR_ACCESS_SECRET -e DOMAIN=YOUR_DOMAIN -e EMAIL=YOUR_NOTIFICATION_EMAIL \ // 证书刷新通知邮箱 -e CRON_SCHEDULE="0 0 * * *" \ // 自定义证书刷新间隔 -v /path/to/your_certs:/etc/letsencrypt/certs \ -d certbot-alicli
其中 -v /path/to/your_certs:/etc/letsencrypt/certs 默认证书保存位置在/etc/letsencrypt/live而不是/etc/letsencrypt/certs,docker创建完后才发现,改的有点麻烦
The text was updated successfully, but these errors were encountered:
少映射一个路径,导致映射出来的证书实际只是一个链接
Sorry, something went wrong.
#22
No branches or pull requests
docker run
-e REGION=YOUR_REGEION
-e ACCESS_KEY_ID=YOUR_ACCESS_KEY
-e ACCESS_KEY_SECRET=YOUR_ACCESS_SECRET
-e DOMAIN=YOUR_DOMAIN
-e EMAIL=YOUR_NOTIFICATION_EMAIL \ // 证书刷新通知邮箱
-e CRON_SCHEDULE="0 0 * * *" \ // 自定义证书刷新间隔
-v /path/to/your_certs:/etc/letsencrypt/certs \
-d certbot-alicli
其中 -v /path/to/your_certs:/etc/letsencrypt/certs 默认证书保存位置在/etc/letsencrypt/live而不是/etc/letsencrypt/certs,docker创建完后才发现,改的有点麻烦
The text was updated successfully, but these errors were encountered: