share file - ccjjxl/ccjjxl.github.io GitHub Wiki
share file
install
yay -S open-vm-tools
config
/etc/fuse.conf
query share name
vmware-hgfsclient
mount share
id $user
vmhgfs-fuse -o allow_other -o uid=1000 -o gid=1000 -o auto_unmount .host:/ /home/ccjjxl/share
wiki
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Shanghai
#- JELLYFIN_PublishedServerUrl=http://192.168.0.5 #optional
volumes:
- ./config:/config
- /home/ccjjxl/share/movie:/data/movies:ro
devices:
- "/dev/dri:/dev/dri"
ports:
- 8096:8096
restart: unless-stopped