From 0e0291510c561f9b5b2a034b7ffff5dcb04fdb53 Mon Sep 17 00:00:00 2001 From: Nicolas De Loof Date: Wed, 8 Sep 2021 09:38:58 +0200 Subject: [PATCH] support service entrypoint set as empty slice (override Dockerfile ENTRYPOINT) close https://github.com/docker/compose/issues/8581 Signed-off-by: Nicolas De Loof --- pkg/compose/create.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/compose/create.go b/pkg/compose/create.go index f8403c45f..f9beea418 100644 --- a/pkg/compose/create.go +++ b/pkg/compose/create.go @@ -251,10 +251,10 @@ func (s *composeService) getCreateOptions(ctx context.Context, p *types.Project, runCmd strslice.StrSlice entrypoint strslice.StrSlice ) - if len(service.Command) > 0 { + if service.Command != nil { runCmd = strslice.StrSlice(service.Command) } - if len(service.Entrypoint) > 0 { + if service.Entrypoint != nil { entrypoint = strslice.StrSlice(service.Entrypoint) }