From d48068d6e123e03fe0cfdff650318e48a2b85b1d Mon Sep 17 00:00:00 2001 From: Nicolas De Loof Date: Tue, 12 Oct 2021 08:07:25 +0200 Subject: [PATCH] pass runtime option to containerCreate Signed-off-by: Nicolas De Loof --- pkg/compose/create.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/compose/create.go b/pkg/compose/create.go index 08b6b76aa..3c3083fde 100644 --- a/pkg/compose/create.go +++ b/pkg/compose/create.go @@ -378,6 +378,7 @@ func (s *composeService) getCreateOptions(ctx context.Context, p *types.Project, PidMode: container.PidMode(service.Pid), Tmpfs: tmpfs, Isolation: container.Isolation(service.Isolation), + Runtime: service.Runtime, LogConfig: logConfig, }