Table of content:
To update the stack - first of all stop the stack:
docker compose down
Then issue a git pull:
git pull
# if errors occured you can issue a stash before:
git stash
git pull
Finally, restart the stack
docker compose up -d
Sometimes it will useful to download and compile the lastest image of the JTSO container. For that, first stop the stack:
docker compose down
Then delete your local JTSO container image
docker image rm compose-jtso
And finally, restart the stack. The restart could take a bit more time as docker needs to download and compile the new version of JTSO.
docker compose up -d
OpenJTS uses a fork of the telegraf project. Sometimes it will useful to download and compile the lastest image of the Telegraf container. For that, first stop the stack:
docker compose down
Then delete your local Telegraf container images - one per platform
docker image rm compose-telegraf_vmx
docker image rm compose-telegraf_mx
docker image rm compose-telegraf_ptx
docker image rm compose-telegraf_acx
And finally, restart the stack. The restart could take a bit more time as docker needs to download and compile the new version of Telegraf.
docker compose up -d