2024-07-12, 01:45 AM
Ok. Let's go a different route. Let's try for a docker compose setup.
Stop the jellyfin container. Verify that the compose plugin is installed with "sudo docker compose version. If so, in /home/evanm/jellyfin create a file called docker-compose.yml and copy and paste the code block below into it.
Once you've done that, let's clean up docker a bit with "sudo docker system prune -a". Once it finishes running, while in /home/evanm/jellyfin type in "sudo docker compose up -d".
Stop the jellyfin container. Verify that the compose plugin is installed with "sudo docker compose version. If so, in /home/evanm/jellyfin create a file called docker-compose.yml and copy and paste the code block below into it.
Code:
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
user: 1000:1000
network_mode: host
volumes:
- /home/evanm/jellyfin/config:/config
- /home/evanm/jellyfin/cache:/cache
- /media/raid/movies:/movies
- /media/raid/music:/music
restart: 'unless-stopped'
Once you've done that, let's clean up docker a bit with "sudo docker system prune -a". Once it finishes running, while in /home/evanm/jellyfin type in "sudo docker compose up -d".