Docker Ps Custom
Customize docker ps output.
docker ps --format "table {{.ID}}\t{{ .Names }}\t{{ .Image }}\t{{ .Status }}\t{{ .Ports }}"
docker ps --format "table {{ .Names }}" -a
options
| Placeholder | Description |
|---|---|
| .ID | Container ID |
| .Image | Image ID |
| .Command | Quoted command |
| .CreatedAt | Time when the container was created. |
| .RunningFor | Elapsed time since the container was started. |
| .Ports | Exposed ports. |
| .State | Container status (for example; “created”, “running”, “exited”). |
| .Status | Container status with details about duration and health-status. |
| .Size | Container disk size. |
| .Names | Container names. |
| .Labels | All labels assigned to the container. |
| .Label | Value of a specific label for this container. For example ‘{{.Label “com.docker.swarm.cpu”}}’ |
| .Mounts | Names of the volumes mounted in this container. |
| .Networks | Names of the networks attached to this container.aceholder Description |