Is it possible to run a specific docker image from docker hub instead of linuxserver.io? (wyoming-satellite)

  • I would like to run wyoming-satellite on LibreELEC (Raspberry Pi 4 - 4GB RAM). It's basically just a simple python program that takes my microphone input and streams it over UDP to my Voice Assistant running on another server.

    Someone has published a docker image for it on docker hub and I tested it on LibreElec via SSH with this command:

    (I added a USB sound card in order for this to work btw.)

    Is there any way to add this container to LibreELEC properly? I mean in a way that is somewhat supported, stable, survives updates reboots etc. and maybe also image updates from docker hub through the UI?

  • Creating via docker run is fine. If you add "--restart=unless-stopped" as a docker argument, the container will start on boot.


    Also "-d" will make it run in the background.