We deployed an application to the raspberry pi3 and the deployment is running smooth. Now we want to update the application by using the same command “balena deploy myApp --logs --source . --emulated”. We got
[Info] Compose file detected
[Info] Everything is up to date (use --build to force a rebuild)
[Info] Creating release…
[Info] Pushing images to registry…
[Info] Saving release…
[Success] Deploy succeeded!
but it is not pushing the updated application to the pi.
Hi there! As stated in the balena deploy documentation here :
Unless an image is specified, this command will look into the current directory (or the one specified by --source) for a docker-compose.yml file. If one is found, this command will deploy each service defined in the compose file, building it first if an image for it doesn’t exist.
So you can probably try using --build that will force a rebuild of the images.