I recently upgraded to 2011/1/11 release. How do I add a service for Tilt? I found the widget, but only see the Spark service with no option to add a new service.
As soon as your Tilt service publishes data, it will be auto-detected and show up in the sidebar.
As I understand, an update for the Tilt service was released an hour or two before you posted. You may want to run brewblox-ctl service pull tilt
.
I tried brewblox-ctl service pull tilt and received the following:
pi@raspberrypi:~/brewblox $ brewblox-ctl service pull tilt
ERROR: No such service: tilt
Command ‘docker-compose pull tilt’ returned non-zero exit status 1.
Ok think I have it working by doing this:
You need to add the service and set the eventbus port in your docker-compose.yml file.
tilt:
image: j616s/brewblox-tilt:latest
restart: unless-stopped
privileged: true
network_mode: host
volumes:
- ./tilt:/share
Finally, you’ll have to bring up the new service using
brewblox-ctl up
I tried earlier, but must have made a copy/paste error.