2024-07-12, 01:21 AM
(This post was last modified: 2024-07-12, 01:30 AM by jelly. Edited 4 times in total.)
Hellooo. I was using docker (not compose)
Everything is working now
Now my family is watching a movie.
This is what I did...
Did 1 and 2.
Then I looked the official installation guide https://jellyfin.org/docs/general/instal.../container
I used docker compose this time.
This is the docker-compose.yml file:
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
network_mode: 'host'
volumes:
- /home/USER/docker/jellyfin/configconfig
- /home/USER/docker/jellyfin/cachecache
- type: bind
source: /home/USER/nfs_share/qbittorrent/downloads/media
target: /media
restart: 'unless-stopped'
I did 'docker compose up -d'...
And then it worked!!!.
I need to say that there were some failed attempts before I succeded using your solution, mostly because of tweaks on the docker-compose.yml file, but I stopped and pruned the jellyfin container before a new attempt.
I have a last question: there are some extra steps that I need to take to fully clean my server? I mean like deleting the docker volumes and things like that.
I'm very grateful for your time, patience and consideration
PD:
What I think caused this issue was this...
When I used 'docker pull jellyfin/jellyfin' I had some network problems, then I had to run this a lot of times. Then I solved my problem using this
https://stackoverflow.com/questions/4758...l-tcp-look
But maybe this caused a file to be corrupt
I also had some blackouts here when setting jellyfin up
Everything is working now
Now my family is watching a movie.
This is what I did...
Did 1 and 2.
Then I looked the official installation guide https://jellyfin.org/docs/general/instal.../container
I used docker compose this time.
This is the docker-compose.yml file:
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
network_mode: 'host'
volumes:
- /home/USER/docker/jellyfin/configconfig
- /home/USER/docker/jellyfin/cachecache
- type: bind
source: /home/USER/nfs_share/qbittorrent/downloads/media
target: /media
restart: 'unless-stopped'
I did 'docker compose up -d'...
And then it worked!!!.
I need to say that there were some failed attempts before I succeded using your solution, mostly because of tweaks on the docker-compose.yml file, but I stopped and pruned the jellyfin container before a new attempt.
I have a last question: there are some extra steps that I need to take to fully clean my server? I mean like deleting the docker volumes and things like that.
I'm very grateful for your time, patience and consideration
PD:
What I think caused this issue was this...
When I used 'docker pull jellyfin/jellyfin' I had some network problems, then I had to run this a lot of times. Then I solved my problem using this
https://stackoverflow.com/questions/4758...l-tcp-look
But maybe this caused a file to be corrupt
I also had some blackouts here when setting jellyfin up