Just got this running on a Synology 918+. Very elegant. I tried to use the GUI to create the container but the web interface just wouldn't display even though everything looked correct. I used docker-compose from an ssh command line and it works perfectly. I think it has something to do with the way a network is created from a docker-compose.yml versus the choices available in the GUI. After stopping the Docker package on the Synology and restarting it, control of the container is possible from the GUI to make tweaks and stop/start the container. I like how the plugins are stored in the config mount point. I wasn't sure how enabling something like Spotty would work but so far everything is working well. Here's my docker-compose.yml if it helps anyone. I'm using the stable build. I used "sudo docker-compose up -d" to start the container.
version: '3' services: lms: container_name: lms hostname: lms image: lmscommunity/logitechmediaserver:stable build: . volumes: - /volume1/docker/lms/config:/config:rw - "/volume1/Music/Main Library:/music:ro" - "/volume1/Music/Main Library/Playlists:/playlist:rw" ports: - 9002:9002/tcp - 9090:9090/tcp - 3483:3483/tcp - 3483:3483/udp environment: - TZ=America/New_York - HTTP_PORT=9002 restart: unless-stopped Transporter -> Classe' CP-47.5 -> Classe' CA-201 -> Martin Logan SL3 ------------------------------------------------------------------------ Celeritas's Profile: http://forums.slimdevices.com/member.php?userid=18887 View this thread: http://forums.slimdevices.com/showthread.php?t=111828 _______________________________________________ unix mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/unix
