You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
As I see README.md for client configuration, it shows like this:
version: '2'services:
client:
image: balenablocks/multiroomcommand: [ "/usr/bin/snapclient", "--host", "<MULTIROOM_SERVER>" ] # "<MULTIROOM_SERVER>" is your multiroom server hostname or IP address
But in entry.sh, host parameter should be --host=<MULTIROOM_SERVER>.
Thus, docker command should be like this:
version: '2'services:
client:
image: balenablocks/multiroomcommand: [ "/usr/bin/snapclient", "--host=<MULTIROOM_SERVER>" ] # "<MULTIROOM_SERVER>" is your multiroom server hostname or IP address
As I see README.md for client configuration, it shows like this:
But in entry.sh, host parameter should be
--host=<MULTIROOM_SERVER>
.Thus, docker command should be like this:
This works well for me.
Thank you.
The text was updated successfully, but these errors were encountered: