Files
docker-mods-uptime-kuma-tim…/root/etc/cont-init.d/98-npmglobal
T
2020-11-14 21:55:40 +00:00

10 lines
230 B
Plaintext

#!/usr/bin/with-contenv bash
# check npm exists
if [ -f /usr/bin/npm ]; then
## Ubuntu
mkdir /config/.npm-global
npm config set prefix '/config/.npm-global'
export PATH=/config/.npm-global/bin:$PATH
source ~/.profile
fi