Skip to content

Commit

Permalink
Merge pull request #685 from jvanz/inspect_env
Browse files Browse the repository at this point in the history
inspect.go: inspect env variables
  • Loading branch information
mtrmac authored Aug 15, 2019
2 parents ee9e9df + a778e59 commit 481bb94
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmd/skopeo/inspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ type inspectOutput struct {
Architecture string
Os string
Layers []string
Env []string
}

type inspectOptions struct {
Expand Down Expand Up @@ -142,6 +143,7 @@ func (opts *inspectOptions) run(args []string, stdout io.Writer) (retErr error)
Architecture: imgInspect.Architecture,
Os: imgInspect.Os,
Layers: imgInspect.Layers,
Env: imgInspect.Env,
}
outputData.Digest, err = manifest.Digest(rawManifest)
if err != nil {
Expand Down

0 comments on commit 481bb94

Please sign in to comment.