Fix date formating in 'created' col

This commit is contained in:
Florian 2022-02-01 00:27:04 +01:00
parent 05b17798f8
commit 815dc6ec84
1 changed files with 1 additions and 1 deletions

View File

@ -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, ";"))