mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-04 18:09:12 +03:00
Instantly crashing synology NAS Docker #166
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @deten on GitHub (Dec 29, 2018).
Here's my docker run command to create the container:
Heres the log:
@sparky8251 commented on GitHub (Dec 29, 2018):
Try:
The
--userand--groupswitches are deprecated and there is even a check on line 16 and 17 of the dockerfile that should've killed the container if you used them.It's looking like the user and group aren't setting so the server cannot access its old files. The above should make it run as the specific user/group.
@deten commented on GitHub (Dec 29, 2018):
Solved using your -e UID and -e GUID format
@fuomag9 commented on GitHub (Aug 12, 2021):
I confirm that removing the --user option fixed my issue for me as well