You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specify limits to the size of jellyfin docker container log files to prevent huge log files consuming disk space.
Reason for change
My jellyfin docker log file (-json.log) was 50GB for whatever reason, so I ran out of disc space. By default there's no limit or log rotation happening with the console logs of docker containers, but this can be changed globally, ie. /etc/docker/daemon.json, or on a container basis. Useful info on this here.
The simplest approach is to include limits in the docker run command or the docker compose file. This feature request is to have this reviewed and ideally included in any official jellyfin docker documentation.
While it's always important to understand why a docker container log file grows so large, that's a separate exercise. This feature request is to ensure there is good logging practices configured when using jellyfin in docker.
Proposed code change
Suggest documentation include parameters in docker run commands or docker compose files:
Log size limiting is beyond the scope of our sample docker run and compose yamls
If the container log got that big, either there's something wrong with the app (repeated error logging) and/or you didn't update the container in a long time.
Is this a new feature request?
Wanted change
Specify limits to the size of jellyfin docker container log files to prevent huge log files consuming disk space.
Reason for change
My jellyfin docker log file (-json.log) was 50GB for whatever reason, so I ran out of disc space. By default there's no limit or log rotation happening with the console logs of docker containers, but this can be changed globally, ie. /etc/docker/daemon.json, or on a container basis. Useful info on this here.
The simplest approach is to include limits in the docker run command or the docker compose file. This feature request is to have this reviewed and ideally included in any official jellyfin docker documentation.
While it's always important to understand why a docker container log file grows so large, that's a separate exercise. This feature request is to ensure there is good logging practices configured when using jellyfin in docker.
Proposed code change
Suggest documentation include parameters in docker run commands or docker compose files:
Example docker compose:
The text was updated successfully, but these errors were encountered: