github.com/adityamillind98/nomad@v0.11.8/website/pages/docs/commands/version.mdx (about) 1 --- 2 layout: docs 3 page_title: 'Commands: version' 4 sidebar_title: version 5 description: | 6 Display the version and build data of Nomad 7 --- 8 9 # Command: version 10 11 The `version` command displays build information about the running binary, 12 including the release version and the exact revision. 13 14 ## Usage 15 16 ```plaintext 17 nomad version 18 ``` 19 20 ## Output 21 22 This command prints both the version number as well as the exact commit SHA used 23 during the build. The SHA may also have the string `+CHANGES` appended to the 24 end, indicating that local, uncommitted changes were detected at build time. 25 26 ## Examples 27 28 ```shell-session 29 $ nomad version 30 Nomad v0.0.0-615-gcf3c6aa-dev (cf3c6aa8a75a689987b689d75ae2ba73458465cb+CHANGES) 31 ```