Files
docker-mods-uptime-kuma-tim…/root/etc/cont-init.d/98-tshoot-config
T

17 lines
284 B
Plaintext

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