July 26, 2025Jul 26 I am not the developer of any of the applications featured in these templates—I only create and maintain the Unraid templates themselves.If you encounter any issues with a template, please either:Reply in the relevant thread specifying which template needs assistance, orOpen an issue on my GitHub repository: https://github.com/Soitora/Unraid-TemplatesNetronomeNetronome is a modern network speed testing and monitoring tool built with Go and React.https://github.com/autobrr/netronomeCaseium WebA modern, privacy aware web app to compress images, all offline and within the browser.https://github.com/lymphatus/caesium-app-web/ Edited January 3Jan 3 by Soitora Add Netronome
June 6Jun 6 Bug in the netronome Unraid template: it shows "unhealthy" on a default install.ExtraParams hardcodes a Postgres healthcheck: --health-cmd='pg_isready -U netronome' --health-interval=5s --health-retries=5 --health-timeout=5sBut the template's default DB type is sqlite (NETRONOME__DB_TYPE=sqlite). With sqlitethere's no Postgres listening, so pg_isready fails every time → container is permanentlyflagged unhealthy even though netronome is running fine on :7575. The netronome imageitself defines no HEALTHCHECK, so this comes entirely from the template.Fix: drop the pg_isready healthcheck for sqlite installs, or replace it with an HTTPcheck against the web UI, e.g. --health-cmd='wget -qO- http://localhost:7575/ >/dev/null || exit 1'.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.