# Docker

# Custom format output (GO template)
[https://docs.docker.com/config/formatting/]()

In CLI
```shell
'{{ .ID }}\t{{.Image}}\t{{ .Names }}'
```

Or directly in `.docker/config.json` :
```shell
{
  "psFormat": "table {{.ID}}\\t{{.Image}}\\t{{.Status}}\\t{{.Names}} ({{.Ports}})"
}
```