Skip to content

Commit

Permalink
fix: removing unused property
Browse files Browse the repository at this point in the history
  • Loading branch information
axel7083 committed Sep 21, 2023
1 parent 4592dd2 commit 0302093
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion pkg/kobject/kobject.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ type ServiceConfig struct {
Args []string `compose:"args"`
VolList []string `compose:"volumes"`
Network []string `compose:"network"`
Profiles []string `compose:"profiles"`
Labels map[string]string `compose:"labels"`
Annotations map[string]string `compose:""`
CPUSet string `compose:"cpuset"`
Expand Down
1 change: 0 additions & 1 deletion pkg/loader/compose/compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,6 @@ func dockerComposeToKomposeMapping(composeObject *types.Project) (kobject.Kompos
serviceConfig.Privileged = composeServiceConfig.Privileged
serviceConfig.User = composeServiceConfig.User
serviceConfig.ReadOnly = composeServiceConfig.ReadOnly
serviceConfig.Profiles = []string{"frontend-dev"}
serviceConfig.Stdin = composeServiceConfig.StdinOpen
serviceConfig.Tty = composeServiceConfig.Tty
serviceConfig.TmpFs = composeServiceConfig.Tmpfs
Expand Down

0 comments on commit 0302093

Please sign in to comment.