diff options
author | crupest <crupest@outlook.com> | 2022-11-22 14:19:52 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-22 14:19:52 +0800 |
commit | 749b3db2e35f98e3d00ba93c1b539f498b700231 (patch) | |
tree | cdcbeb1b97c8b1f904ac2d59dfeecbcf4f9b4f58 /docker/auto-certbot | |
parent | 89a7b4e2a9776c2c4ac47526a892ba2cd75b491d (diff) | |
download | crupest-749b3db2e35f98e3d00ba93c1b539f498b700231.tar.gz crupest-749b3db2e35f98e3d00ba93c1b539f498b700231.tar.bz2 crupest-749b3db2e35f98e3d00ba93c1b539f498b700231.zip |
Fix no bash in auto-certbot.
Diffstat (limited to 'docker/auto-certbot')
-rw-r--r-- | docker/auto-certbot/Dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docker/auto-certbot/Dockerfile b/docker/auto-certbot/Dockerfile index 655197d..53ab077 100644 --- a/docker/auto-certbot/Dockerfile +++ b/docker/auto-certbot/Dockerfile @@ -1,6 +1,8 @@ FROM certbot/certbot:latest ARG CRUPEST_DOMAIN ARG CRUPEST_CERTBOT_RENEW_COMMAND="" +# install bash +RUN apk add --no-cache bash COPY daemon.bash /daemon.bash VOLUME ["/var/www/certbot", "/etc/letsencrypt", "/var/lib/letsencrypt"] ENTRYPOINT [ "/daemon.bash" ] |