Everything posted by woble
-
[Support] binhex - NZBHydra2
You can roll back to `1.4.7-1-01` by changing the repo to `binhex/arch-nzbhydra2:1.4.7-1-01`. Anyone else experiencing v2 crashing and needing to restart the docker? Happens to me every few days or so. Unsure if it's related to the beta state of hydra or the docker itself.
-
[Support] binhex - NZBHydra2
Hey @binhex Is upgrade automatic with the newest releases of nzbhydra2 or do you have to upgrade the docker manually for us to get the new version?
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
@dmacias Fair enough. In regards to versioning. Is that an automatic or manual process? I noticed for example that borgbackup is already 1.1.4 while still 1.1.1 in nerdpack without any upgrade option. How does one upgrade all tools to the latest?
-
[Support] binhex - Lidarr
I had that same problem initially with the other docker, but lidarr fixed the issue a while ago. Ref: https://github.com/lidarr/Lidarr/commit/aab78a62e68b28fd7115ae69edf5b704456f6389 I also have the following script running daily to clean up the docker logs. #!/bin/bash logs=$(find /var/lib/docker/containers/ -name '*.log');for log in $logs; do cat /dev/null > $log;done
-
[Support] binhex - Radarr
Is there a way to use `nightly` instead of `develop` branch of Radarr. Perhaps a separate docker is required for that? Same goes for the nzbget, `develop` instead of `stable`, and sonar. Any chance you could create those dockers if there's no way with the current ones.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
How about adding https://github.com/rg3/youtube-dl/ ? Fairly easy to install manually, but I am sure some lazy hoarders will appreciate.
-
[Plugin] unbalanced
There's an issue with the footer where it floats on top of long lists. Apparently was brought up before but never fixed. Easy to fix as follows. 1. Change `height` on the `body` class to `min-height`. This will have the footer at the bottom of the viewport if there's plenty of space, otherwise other content will push it down outside the viewport. 2. Remove use of `height100` class. It relies on viewport height and unnecessarily clamps the height of a block that is taller than 100vh.