In terms of lms docker on Synology and updates I tend to use a docker-compose file below setup in a Portainer stack:
version: "3.8" services: logitech-media-server: image: lmscommunity/logitechmediaserver:stable container_name: logitech-media-server environment: - PUID=1029 # docker - PGID=100 # users - TZ=Europe/London - HTTP_PORT=9002 - LANG=en_GB.UTF-8 - LANGUAGE=en_GB.UTF-8 volumes: - /volume1/docker/lms:/config:rw - /volume1/music/Lossless:/music:ro - /volume1/music/Playlists:/playlist:rw - /etc/localtime:/etc/localtime:ro - /etc/TZ:/etc/TZ:ro ports: - 9002:9002/tcp #web port - 9090:9090/tcp - 3483:3483/tcp - 3483:3483/udp network_mode: synobridge labels: - 'wud.tag.include=stable' - 'wud.watch.digest=true' - 'wud.link.template=http://htmlpreview.github.io/?https://github.com/Logitech/slimserver/blob/public/$${major}.$${minor}/Changelog$${major}.html' restart: unless-stopped I use what's Up Docker (WUD) to notify me of version updates. Then manually use Portainer to update the container (if you want you can WUD to trigger an automatic update or Watchtower) Hopefully this answers the question earlier in the thread on how to manage updates of the docker container. ------------------------------------------------------------------------ MorpheusUK's Profile: http://forums.slimdevices.com/member.php?userid=71568 View this thread: http://forums.slimdevices.com/showthread.php?t=115220 _______________________________________________ plugins mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/plugins
