-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
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
Could you upgrade the base alpine image of Dockerfile? #3032
Comments
If this is a bug report, please upgrade to the latest code and try again: |
You can get the package info from: |
I'm using acme.sh to deploy certificates for a swarm. (I have several HAProxy containers that deployed on several work nodes. And I have an acme.sh container that runs in manager node.)
So I've add docker-cli in acme.sh. But I found the acme.sh is based on
alpine:3.10
, there is the older version18.09
ofdocker-cli
package inv3.10
apk source. (And the latest stable19.03.11
is only provided inv3.12
apk source.)Could you upgrade the base image to recently alpine? I think it will be awesome if we just used
alpine:3
.Ps. I‘m also finding a better way to deploy certificates in swarm cluster. For now, I'm using NFS volume to distribute certificates, and then create a global once-shot service that will execute
docker kill --signal USR2 $(docker container ls -f 'label=sh.acme.autoload.domain=example.com' --quiet)
on every node. So I need thedocker-cli
to deploy the service.The text was updated successfully, but these errors were encountered: