summaryrefslogtreecommitdiff
path: root/pkg/domain/entities
diff options
context:
space:
mode:
authorMilivoje Legenovic <m.legenovic@gmail.com>2020-11-19 09:55:36 +0100
committerMilivoje Legenovic <m.legenovic@gmail.com>2020-11-23 17:45:24 +0100
commit6f7b7060e8c4e8e8d59532eebb0ec12da2faefe9 (patch)
treec636654f50684be8ad2ddb5b68767f5666725a9f /pkg/domain/entities
parent5292d5a7b85f9d2ae0b2a3734f8ae4baeba80f11 (diff)
downloadpodman-6f7b7060e8c4e8e8d59532eebb0ec12da2faefe9.tar.gz
podman-6f7b7060e8c4e8e8d59532eebb0ec12da2faefe9.tar.bz2
podman-6f7b7060e8c4e8e8d59532eebb0ec12da2faefe9.zip
[WIP] Docker compat API fixes
These are the first fixes that are needed for development environments like Eclipse or IntelliJ that have Docker plug-ins and use the Docker API to speak with container engine (#7857) Signed-off-by: Milivoje Legenovic <m.legenovic@gmail.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r--pkg/domain/entities/images.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go
index cbd6e9192..ab545d882 100644
--- a/pkg/domain/entities/images.go
+++ b/pkg/domain/entities/images.go
@@ -52,7 +52,7 @@ func (i *Image) Id() string { // nolint
type ImageSummary struct {
ID string `json:"Id"`
- ParentId string `json:",omitempty"` // nolint
+ ParentId string // nolint
RepoTags []string `json:",omitempty"`
Created int64
Size int64 `json:",omitempty"`