2024-09-02, 05:12 PM
(2024-09-02, 03:49 PM)Vette Wrote: I did follow this guide to make a restricted docker and user in container manager.Does it not run? That looks good as is.
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/configconfig:rw
- /volume1/docker/jellyfin/cachecache:rw
- /volume1/video/MediaMedia:rw
- /volume1/video/Media2Media2:rw
- /volume1/video/Media3Media3:rw
- /volume1/video/Media4Media4:rw
devices:
- /dev/dri/renderD128dev/dri/renderD128
- /dev/dri/card0dev/dri/card0
restart: 'unless-stopped'
network_mode: host
What is missing or and what do i need to change.