From 815dc6ec840c268b29e0f2075c4bbf78b18ac1dd Mon Sep 17 00:00:00 2001 From: Florian Date: Tue, 1 Feb 2022 00:27:04 +0100 Subject: [PATCH] Fix date formating in 'created' col --- connector/docker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector/docker.go b/connector/docker.go index fb2e727..91b0e30 100644 --- a/connector/docker.go +++ b/connector/docker.go @@ -187,7 +187,7 @@ func (cm *Docker) refresh(c *container.Container) { if webPort != "" { c.SetMeta("Web Port", webPort) } - c.SetMeta("created", insp.Created.Format("Mon Jan 2 15:04:05 2006")) + c.SetMeta("created", insp.Created.Format("Mon Jan 02 15:04:05 2006")) c.SetMeta("uptime", calcUptime(insp)) c.SetMeta("health", insp.State.Health.Status) c.SetMeta("[ENV-VAR]", strings.Join(insp.Config.Env, ";"))