Homarr documentation is out of date. #791
tserversbfs
started this conversation in
General
Replies: 1 comment 2 replies
-
Please click the "edit this page" button at the end of the documentation and suggest these changes directly by editing the markdown data of the page in question. This post you made is a bit confusing, making a PR with the changes you suggest would help greatly. 😉 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
docs
old: If you're using Docker, this is usually /data/docker/homarr.
old: script: iconCacheDir="${pathToHomarr}/icons/cache"
curl isn't installed in the docker package so it needs to be installed also.
lastly the sed line doesn't work, but I don't read sed so I cannot help with that.
old:
`pathToHomarr=""
configFile="${pathToHomarr}/configs/default.json"; iconCacheDir="${pathToHomarr}/icons/cache"; mkdir -p $iconCacheDir;$configFile | grep cdn.jsdelivr.net | cut -d'"' -f 4 | while read -r line; do echo "Processing $ (basename $line)"; curl -o $iconCacheDir/$ (basename $line) $line; done
cat
sed -i ".
date +%F
.bak" "s%https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png%/icons/cache%g" $configFileecho "Done! Relaunch Homarr to update the icons."`
new:
`pathToConfigr="" eg /app/data
pathToIcons="" eg /app/public
apk add curl$configFile | grep cdn.jsdelivr.net | cut -d'"' -f 4 | while read -r line; do echo "Processing $ (basename $line)"; curl -o $iconCacheDir/$ (basename $line) $line; done
configFile="${pathToConfigr}/configs/default.json"; iconCacheDir="${pathToIcons}/icons/cache"; mkdir -p $ic
onCacheDir;
cat
sed -i ".
date +%F
.bak" "s%https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png%/icons/cache%g" $configFileecho "Done! Relaunch Homarr to update the icons."`
Beta Was this translation helpful? Give feedback.
All reactions