Skip to content

Latest commit

 

History

History
77 lines (53 loc) · 1.58 KB

UPDATE.md

File metadata and controls

77 lines (53 loc) · 1.58 KB

Update the stack

Table of content:

Update JTS

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 

Update the JTSO container

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 

Update the Telegraf instance used by OPENJTS

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