mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-04 23:35:13 -04:00
289420531a
+Update readme
14 lines
303 B
Plaintext
14 lines
303 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
# Exit if no installable packages are provided
|
|
if [ -z ${APT_PACKAGES+x} ]; then
|
|
echo "**** No APT packages to install ****"
|
|
exit 0
|
|
fi
|
|
|
|
if [ -f /usr/bin/apt ]; then
|
|
apt install -y --no-install-recommends ${APT_PACKAGES}
|
|
else
|
|
echo "!!! apt not found !!!"
|
|
fi
|