Hi,
we are running TAIGA in a docker version.
We recently updated from 6.8.0 to 6.8.1. So far so good. But where can i check the version in a running docker installation? I looked into docker/info, log-files etc. to no avail.
Best regards,
Bodo
You can execute the following management command from the directory where the docker compose is:
$ ./taiga-manage.sh shell ... >>> import taiga;print(taiga.__version__) 6.8.1 >>> exit()
This will print the current taiga-back version.
Hi Miguel,
that worked.
Thanks a lot!