First roadblock for new user

Losant is telling me this:
Since you are using Balena, and they are managing the docker container, the update will be done using their software. Documentation on doing so can be found here .

Hi @landersson
Deploying the losant agent as you have done should give you the latest available version.
When you want to update (if there is an update) your best option is to push a new release to balena. This would be done by calling
git push --force balena master
from inside your project folder (where the docker-compose.yml file is).
As you have not really updated anything I am not 100% sure that git will actually push anything but the --force should take care of that I hope.
Otherwise you will have to modify the project - eg change something irrelevant like a comment in the docker-compose file and then call
git commit
git push -balena master
The final outcome must be that git push creates a new release and you see the unicorn and the success message at the end. When that is done and your device has updated you are running the lastest version of the losant agent.
Regards
Thomas