There appears to be something amiss with permissions.

Using the following docker-compose:


Code:
--------------------
    version: "3.5"
  
  volumes:
  music:
  driver: local
  driver_opts:
  type: nfs
  o: addr=nas.gently.org.uk
  device: ":/mnt/data/music"
  
  services:
  logitech-media-server:
  container_name: lms
  image: lmscommunity/logitechmediaserver:latest
  restart: unless-stopped
  ports:
  - "9000:9000"
  - "9090:9090"
  - "3483:3483"
  - "3483:3483/udp"
  volumes:
  # folder where lms stores its data (cache, logs, prefs)
  - ./lms_storage:/config
  # folder where lms should look for music
  - music:/music
  environment:
  - PUID=1000
  - PGID=1003
  # use time of host
  - /etc/localtime:/etc/localtime:ro
  - /etc/timezone:/etc/timezone:ro
  
--------------------


I see that 'lms_storage/prefs/plugin' is owned by root:root. I suspect
this is the reason for the following error in the logs:


Code:
--------------------
    lms                      | [20-10-23 07:45:02.0022] 
Slim::Utils::Prefs::Namespace::savenow (337) Error: can't save 
/config/prefs/plugin/extensions.prefs: Permission denied at 
/lms/Slim/Utils/Prefs/Namespace.pm line 326.
--------------------


Andy


------------------------------------------------------------------------
adhawkins's Profile: http://forums.slimdevices.com/member.php?userid=650
View this thread: http://forums.slimdevices.com/showthread.php?t=111828

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to