So I have my setup in docker with a docker-compose file. I'm able to
scan and listen to my music/playlists with no problem but whenever I
start the server I get a permissions issue.. Is there something else I
should be doing to fix this?

This is an example of my error in the log:

Code:
--------------------
    lms    | chown: changing ownership of '/playlist/Classic Rock.m3u': 
Operation not permitted
--------------------


This is my compose file:

Code:
--------------------
    version: '2'
  services:
  lms:
  container_name: lms
  image: lmscommunity/logitechmediaserver
  environment:
  - PGID=1000
  - PUID=1000
  volumes:
  - ./lms:/config:rw
  - /networkmount/Music:/music:ro
  - /networkmount/Playlists/:/playlist:rw
  - /networkmount/Playlists/Backgrounds:/backgrounds:ro
  - /etc/localtime:/etc/localtime:ro
  - /etc/timezone:/etc/timezone:ro
  restart: unless-stopped
  network_mode: host
--------------------


------------------------------------------------------------------------
kllngtme's Profile: http://forums.slimdevices.com/member.php?userid=30198
View this thread: http://forums.slimdevices.com/showthread.php?t=116150

_______________________________________________
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to