()
| 177 | } |
| 178 | |
| 179 | func (c *ContainerContext) Command() string { |
| 180 | command := c.c.Command |
| 181 | if c.trunc { |
| 182 | command = formatter.Ellipsis(command, 20) |
| 183 | } |
| 184 | return strconv.Quote(command) |
| 185 | } |
| 186 | |
| 187 | func (c *ContainerContext) CreatedAt() string { |
| 188 | return time.Unix(c.c.Created, 0).String() |
no outgoing calls