mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-29 03:33:19 -04:00
10 lines
321 B
Plaintext
10 lines
321 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
source /etc/lsb-release
|
|
|
|
[[ ! -f "/etc/apt/sources.list.d/hashicorp.list" ]] &&
|
|
curl -s https://apt.releases.hashicorp.com/gpg | apt-key add - &&
|
|
echo "deb https://apt.releases.hashicorp.com ${DISTRIB_CODENAME} main" \
|
|
>/etc/apt/sources.list.d/hashicorp.list
|