zordaz wrote: 
> I think I am able to test the x64 versions. Although still somewhat in
> the Docker learning curve, I already have several other containers
> running via Docker-compose. I have to read through this thread and
> Github first, especially to understand the way the persistent parts of a
> LMS system are stored (via official Docker volumes? Via mappings?), so
> it might take some time before I can report my findings.

If it helps with your testing, here's a basic docker run command I'd
previously used during testing to start DOliana's images:

Code:
--------------------
    docker run -d \
  -p 9000:9000 \
  -p 9002:9000 \
  -p 3483:3483 \
  -p 3483:3483/udp \
  -e TZ=Australia/Melbourne \
  -v /storage/.kodi/userdata/Apps/LMS:/srv/squeezebox \
  -v /storage/music:/srv/music \
  doliana/logitech-media-server:latest-7.9.2
--------------------


There are 2 persistent data stores that are mapped to your local
storage:
1) configuration data */srv/squeezebox*
2) music source */srv/music*

(Change the image tag to which one you want to test)

This would start LMS listening on port 9000 or 9002.


------------------------------------------------------------------------
kidhazy's Profile: http://forums.slimdevices.com/member.php?userid=42259
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