Files
docker-mods-uptime-kuma-tim…/root/etc/cont-init.d/95-tshoot-config
T
TheSpad 9fbcc36241 v3ify
2022-07-24 14:42:54 +01:00

17 lines
304 B
Plaintext
Executable File

#!/usr/bin/with-contenv bash
## Ubuntu
if [ -f /usr/bin/apt ]; then
apt-get install --no-install-recommends -y \
dnsutils \
net-tools \
iputils-ping \
traceroute
fi
# Alpine
if [ -f /sbin/apk ]; then
apk add --no-cache \
bind-tools \
net-tools
fi