Install acme.sh using online archive
ContainerImages/certs/pipeline/head This commit looks good Details

Running `acme.sh --install` apparently only copies `acme.sh` itself.
This seems odd, since that's just copying a single file.  I assumed that
the `--install` options also installed the hook scripts, but there is
actually a separate option for that: `--install-online`.
main
Dustin 2022-11-18 21:00:28 -06:00
parent 3bbab9ea40
commit 713622aed4
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ RUN curl -fL -o /tmp/acme.sh https://raw.githubusercontent.com/acmesh-official/a
mkdir -p /usr/local/acme.sh && \ mkdir -p /usr/local/acme.sh && \
cd /tmp && \ cd /tmp && \
sh acme.sh \ sh acme.sh \
--install \ --install-online \
--home /usr/local/acme.sh \ --home /usr/local/acme.sh \
--config-home /acme.sh \ --config-home /acme.sh \
--no-cron \ --no-cron \