AzuraCast/util/docker/web/setup/acme_sh.sh

20 lines
342 B
Bash

#!/bin/bash
set -e
set -x
# Get acme.sh ACME client source
mkdir /src
git -C /src clone https://github.com/acmesh-official/acme.sh.git
cd /src/acme.sh
# Install acme.sh in /app
./acme.sh --install \
--nocron \
--auto-upgrade 0 \
--home /usr/local/acme.sh \
--config-home /etc/acme.sh/default
# Make house cleaning
cd /
rm -rf /src