Files
nomad/website/content/docs/commands/version.mdx
Aimee Ukasick dae496e427 Docs: SEO front matter description for search: commands section (#25175)
* Enhance front matter description for search

* acl section

* alloc section

* config section

* deployment section

* eval section

* job section

* license section

* namespace section

* node section

* node pool section

* operator section

* plugin section

* quota section

* recommendation section

* scaling section

* sentinel section

* server section

* service section

* setup section

* system section

* tls section

* var section

* volume section

* change reference to command reference

* Apply suggestions from code review

Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com>

---------

Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com>
2025-03-19 12:02:02 -05:00

36 lines
907 B
Plaintext

---
layout: docs
page_title: 'nomad version command reference'
description: |
The `nomad version` command displays the version, build date, and revision information for a Nomad installation.
---
# `nomad version` command reference
The `version` command displays build information about the running binary,
including the release version, build date, and the exact revision.
## Usage
```plaintext
nomad version
```
## Output
This command prints the version number and info about the git commit that was
used to build the binary. `BuildDate` is when the commit was made,
and `Revision` is the exact commit SHA.
The SHA may also have the string `+CHANGES` appended to the end,
indicating that local, uncommitted changes were detected at build time.
## Examples
```shell-session
$ nomad version
Nomad v1.5.0
BuildDate 2023-02-17T19:29:26Z
Revision a536284ebcfb4ff26065955abae446d81cc92b87+CHANGES
```