[PR #8529] Fix Docker healthcheck output #11745

Closed
opened 2026-02-07 06:43:47 +03:00 by OVERLORD · 0 comments
Owner

Original Pull Request: https://github.com/jellyfin/jellyfin/pull/8529

State: closed
Merged: Yes


The current Docker healthcheck command results in progress info being output, e.g.

$ docker inspect <jellyfin-container>
... snip ...
"Health": {
    "Status": "healthy",
    "FailingStreak": 0,
    "Log": [
        {
            "Start": "2022-10-10T00:01:53.361633357-07:00",
            "End": "2022-10-10T00:01:53.536249464-07:00",
            "ExitCode": 0,
            "Output": "  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current\n                                 Dload  Upload   Total   Spent    Left  Speed\n\r  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0\r100     7    0     7    0     0    194      0 --:--:-- --:--:-- --:--:--   194\nHealthy"
        },
... snip ...

Fix this by adding the -f/--fail, -s/--silent, -S/--show-error options to avoid progress output, but still show error messages if something goes wrong.

**Original Pull Request:** https://github.com/jellyfin/jellyfin/pull/8529 **State:** closed **Merged:** Yes --- The current Docker healthcheck command results in progress info being output, e.g. ``` $ docker inspect <jellyfin-container> ... snip ... "Health": { "Status": "healthy", "FailingStreak": 0, "Log": [ { "Start": "2022-10-10T00:01:53.361633357-07:00", "End": "2022-10-10T00:01:53.536249464-07:00", "ExitCode": 0, "Output": " % Total % Received % Xferd Average Speed Time Time Time Current\n Dload Upload Total Spent Left Speed\n\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\r100 7 0 7 0 0 194 0 --:--:-- --:--:-- --:--:-- 194\nHealthy" }, ... snip ... ``` Fix this by adding the `-f/--fail`, `-s/--silent`, `-S/--show-error` options to avoid progress output, but still show error messages if something goes wrong.
OVERLORD added the pull-request label 2026-02-07 06:43:47 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#11745