From db3a14694b27d8f8a8377b8522506fc96756cfb3 Mon Sep 17 00:00:00 2001 From: Chris Crone Date: Wed, 4 Nov 2020 10:43:04 +0100 Subject: [PATCH] backend.local: Add command support Signed-off-by: Chris Crone --- local/containers.go | 1 + 1 file changed, 1 insertion(+) diff --git a/local/containers.go b/local/containers.go index ce83d87ef..327a991e5 100644 --- a/local/containers.go +++ b/local/containers.go @@ -118,6 +118,7 @@ func (cs *containerService) Run(ctx context.Context, r containers.ContainerConfi containerConfig := &container.Config{ Image: r.Image, + Cmd: r.Command, Labels: r.Labels, Env: r.Environment, ExposedPorts: exposedPorts,