aschamberger

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by aschamberger

  1. Same situation like ambidex2, it is still not working with the latest image on dockerhub...
  2. It's the avahi of unRAID itself. How did you manage to run it on your unRAID?
  3. Hi, I just installed the LMS container via CA and it didn't start. I got the following error message: root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name="LogitechMediaServer" --net="bridge" -e TZ="Europe/Berlin" -e HOST_OS="unRAID" -p 3483:3483/tcp -p 3483:3483/udp -p 5353:5353/udp -p 9000:9000/tcp -p 9090:9090/tcp -v "/mnt/user/Musik/":"/music":rw -v "/var/run/dbus":"/var/run/dbus":rw -v "/mnt/user/appdata/LogitechMediaServer":"/config":rw snoopy86/logitechmediaserver 7fc7878ece353e41b2af1efec0b54639971e4c7a8c96fa51f5ae5411ad60152d docker: Error response from daemon: failed to create endpoint LogitechMediaServer on network bridge: Error starting userland proxy: listen udp 0.0.0.0:5353: bind: address already in use. The command failed. Thanks for your help. Andreas
  4. I made a simple plugin that installs rclone, adds a helper script to avoid typing the path to the config file ("config/plugins/rclone/.rclone.conf") all the time and also adds a .cron file template to the plugin folder. To setup the cloud storage you need to follow the setup wizard: myrclone config I use myrclone with Blackblaze B2 like that: myrclone sync /mnt/user/Public/test b2:mytest The myrclone script has a --log option that stores the logs to "config/plugins/rclone/logs" The cron template file "config/plugins/rclone/~daily_backup.cron" can be edited/renamed/duplicated to suit your needs (you also need to remove the comment in line 2): # daily backup of test folder to blackblaze b2 mytest bucket (with log option) #0 0 * * * /usr/sbin/myrclone --log sync /mnt/user/Public/test b2:mytest &> /dev/null Logs and config file are kept on uninstall. Andreas rclone.plg