Determining Release Version

How can I tell what version of the release is installed?

There are multiple ways to tell what version of the release is installed.

 From within the application: go to the Help/About page  Here is an example listing:

From the terminal:

To determine the branch an image contains, inspect the image and filter for branch:

docker inspect docker.ssdt.io/usas-app:prod | grep 'branch' "io.ssdt.build.branch": "hotfix/v7.10.4", "io.ssdt.build.branch": "hotfix/v7.10.4",

To determine the version a container contains, inspect the container and filter for version:

docker inspect maumee_usasapp_1 | grep 'version'  "com.docker.compose.version": "1.16.1", "io.ssdt.version": "7.10.4"

What does the number after the dash mean in the release number:

The number after the dash is how many times the release branch was built.  It's not something we include in the release version because it's really not relevant to you.  The important part of the release number is there.  The 7.10.4 release number breaks down like this: 7 is the major release, 10 is the minor release and the third number is reserved for hotfixing the minor release version.

Related articles