2024-09-02, 03:49 PM
I did follow this guide to make a restricted docker and user in container manager.
https://drfrankenstein.co.uk/step-2-sett...ining-ids/
And working on the docker-compose.yml settings now.
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
environment:
TZ: Europe/Stockholm
user: xxx:xxxxx xxx:xxxxx is going to be replaced with my UID and GID
volumes:
- /volume1/docker/jellyfin/config:/config:rw
- /volume1/docker/jellyfin/cache:/cache:rw
- /volume1/video/Media:/Media:rw
- /volume1/video/Media2:/Media2:rw
- /volume1/video/Media3:/Media3:rw
- /volume1/video/Media4:/Media4:rw
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
- /dev/dri/card0:/dev/dri/card0
restart: 'unless-stopped'
network_mode: host
What is missing or and what do i need to change.
https://drfrankenstein.co.uk/step-2-sett...ining-ids/
And working on the docker-compose.yml settings now.
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
environment:
TZ: Europe/Stockholm
user: xxx:xxxxx xxx:xxxxx is going to be replaced with my UID and GID
volumes:
- /volume1/docker/jellyfin/config:/config:rw
- /volume1/docker/jellyfin/cache:/cache:rw
- /volume1/video/Media:/Media:rw
- /volume1/video/Media2:/Media2:rw
- /volume1/video/Media3:/Media3:rw
- /volume1/video/Media4:/Media4:rw
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
- /dev/dri/card0:/dev/dri/card0
restart: 'unless-stopped'
network_mode: host
What is missing or and what do i need to change.