How do you find the taiga version number for a taiga self hosted instance?
The version is in the code of the service (for taiga-front and taiga-back) in some files or in the tag of the repository.
-
If you use taiga from source code, you can use
git describe
to see it. -
if you have set up taiga using the docker images, you can use the command
docker inspect --format='{{index .RepoDigests 0}}' taigaio/taiga-back
anddocker inspect --format='{{index .RepoDigests 0}}' taigaio/taiga-front
to obtain the digest and compare with the different tag versions for taiga-front and taiga-back
I hope this can help
Best regards
1 Like