1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00
Files
openshift-docs/modules/builds-basic-view-build-details.adoc
2023-10-30 10:13:25 -04:00

32 lines
871 B
Plaintext

// Module included in the following assemblies:
// * builds/basic-build-operations.adoc
:_mod-docs-content-type: PROCEDURE
[id="builds-basic-view-build-details_{context}"]
= Viewing build details
You can view build details with the web console or by using the `oc describe` CLI command.
This displays information including:
* The build source.
* The build strategy.
* The output destination.
* Digest of the image in the destination registry.
* How the build was created.
If the build uses the
ifdef::openshift-origin,openshift-enterprise[]
`Docker` or
endif::[]
`Source` strategy, the `oc describe` output also includes information about the source revision used for the build, including the commit ID, author, committer, and message.
.Procedure
* To view build details, enter the following command:
+
[source,terminal]
----
$ oc describe build <build_name>
----