mirror of https://github.com/docker/cli.git
Merge pull request #1037 from essamhassan/1036_fix_mounts_typo_in_srv_inspect_pretty
use : instead of = in mounts service pretty inspect
This commit is contained in:
commit
d4ffd9bc71
|
@ -92,10 +92,10 @@ ContainerSpec:
|
|||
Mounts:
|
||||
{{- end }}
|
||||
{{- range $mount := .ContainerMounts }}
|
||||
Target = {{ $mount.Target }}
|
||||
Source = {{ $mount.Source }}
|
||||
ReadOnly = {{ $mount.ReadOnly }}
|
||||
Type = {{ $mount.Type }}
|
||||
Target: {{ $mount.Target }}
|
||||
Source: {{ $mount.Source }}
|
||||
ReadOnly: {{ $mount.ReadOnly }}
|
||||
Type: {{ $mount.Type }}
|
||||
{{- end -}}
|
||||
{{- if .Configs}}
|
||||
Configs:
|
||||
|
|
Loading…
Reference in New Issue