ok, start with read&write permission for user dockeruser on jellyfin folder.
then stop jellyfin and delete folder
is need to recreate it with correct permission and new config.
then use this new jellyfin.yml file:
Code
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
user: 1001:100
environment:
- TZ=Europe/Polan
- JELLYFIN_PublishedServerUrl=https://jellyfin.$URL #optional
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- /srv/dev-disk-by-uuid-20ea4d82-01cd-4319-a745-d3d010cf26e4/jellyfin:/config
- /srv/dev-disk-by-uuid-20ea4d82-01cd-4319-a745-d3d010cf26e4/JDOWLOADER:/data/movies
#- $Temp:/cache
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
# - 1900:1900/udp #optional
restart: unless-stopped
Display More
once deployed, a new config for jellyfin is stored on
and your videos can be located inside the jellyfin docker on
PD: once works, please consider not to use same disk for donwloads and for jellyfin config, because jellyfin database is grow qickly and eat all the available disk space.