Zululander
New Member
I am running Contatiner Station on a QNAP and wanting to use it to host a JellyFin app.
From googling, the docker compose file would be
I have a share that I am wanting to use for /srv/jellyfin and /media (they should all point to folders in //192.168.1.1/media /mnt/jellyfindata
If even possible, I am not sure how to use docker to first mount the share, which on a linux box I mount using:
And then do I simply do something like
From googling, the docker compose file would be
YAML:
services:
jellyfin:
volumes:
- /srv/jellyfin/config:/config
- /srv/jellyfin/cache:/cache
- /media:/media
network_mode: host
image: jellyfin/jellyfin:latest
I have a share that I am wanting to use for /srv/jellyfin and /media (they should all point to folders in //192.168.1.1/media /mnt/jellyfindata
If even possible, I am not sure how to use docker to first mount the share, which on a linux box I mount using:
Code:
//192.168.1.1/media /mnt/jellyfindata cifs id=dmin,gid=admin,credentials=/etc/cred/jellyfinshare,_netdev 0 0
And then do I simply do something like
YAML:
services:
jellyfin:
volumes:
- /192.168.1.1/media /mnt/jellyfindata/config:/config
- /192.168.1.1/media /mnt/jellyfindata/cache:/cache
- /192.168.1.1/media /mnt/jellyfindata/media:/media
network_mode: host
image: jellyfin/jellyfin:latest