2024-09-10, 04:31 PM
(2024-09-10, 04:23 PM)TheDreadPirate Wrote: Show me the output of these commands and also your docker compose again.
Code:mount | grep Series
ls -ld /srv /srv/dev-disk-by-uuid-95574347-463e-449c-b65a-4492874048e2 /srv/dev-disk-by-uuid-95574347-463e-449c-b65a-4492874048e2/Videos /srv/dev-disk-by-uuid-95574347-463e-449c-b65a-4492874048e2/Videos/Series
Copy and paste the ls command. I am repeating the paths for a reason.
Code:
$ mount | grep Series
ls -ld /srv /srv/dev-disk-by-uuid-95574347-463e-449c-b65a-4492874048e2 /srv/dev-disk-by-uuid-95574347-463e-449c-b65a-4492874048e2/Videos /srv/dev-disk-by-uuid-95574347-463e-449c-b65a-4492874048e2/Videos/Series$ $
drwxr-xr-x 9 root root 4096 Sep 10 00:40 /srv
drwxrws---+ 3 phil users 4096 Sep 10 16:50 /srv/dev-disk-by-uuid-95574347-463e-449c-b65a-4492874048e2
drwxrwx---+ 3 phil users 4096 Sep 10 00:49 /srv/dev-disk-by-uuid-95574347-463e-449c-b65a-4492874048e2/Videos
drwxrws---+ 8 phil users 4096 Sep 10 02:22 /srv/dev-disk-by-uuid-95574347-463e-449c-b65a-4492874048e2/Videos/Series
Code:
---
# https://hub.docker.com/r/linuxserver/jellyfin
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1002
- PGID=100
- TZ=Europe/London
- JELLYFIN_PublishedServerUrl=192.168.1.170
volumes:
- CHANGE_TO_COMPOSE_DATA_PATH/jellyfin/library:/config
- /Videos/Movies
- /Videos/Series
- /Music/
ports:
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
restart: unless-stopped