dperson / samba

Samba docker container
GNU Affero General Public License v3.0
1.5k stars 509 forks source link

Problem with file permission #456

Open breno-rossi opened 5 months ago

breno-rossi commented 5 months ago

I just finished setting up my media center fallowing NovaspiritTech videos, the thing is that I'm having problens with files permission inside my Samba share, every time a movie/tv show is downloaded via Deluge I cant play the media via W11 neither jelllyfin can reproduce it, I need to manually restart the CT to properly work. The Samba was created using docker in a debian CT.

smb.conf

[media]                                                              
   path = /mnt/media                                                                             
   browsable = yes                                                             
   read only = no                                                             
   guest ok = yes                                                            
   veto files = /.apdisk/.DS_Store/.TemporaryItems/.Trashes/desktop.ini/ehthumbs.db/Network Trash Folder/Temporary Items/Thumbs.db/
   delete veto files = yes

docker run

docker run --restart unless-stopped --name samba -p 139:139 -p 445:445 -v /mnt/media:/mnt/media -d dperson/samba -p -u "user;ppassword3" -s "media;/mnt/media;yes;no;yes"

Sorry in advance for any grammar/spelling error, english isnt first language.