Files
docker-mods-uptime-kuma-tim…/root/etc/cont-init.d/98-powershell
T
2020-04-15 20:05:29 -04:00

11 lines
226 B
Plaintext

#!/usr/bin/with-contenv bash
if [ -f "/powershell.deb" ]; then
echo "Installing PowerShell"
apt-get update
apt-get install -y /powershell.deb
rm /powershell.deb
else
echo "PowerShell already installed, skipping"
fi