Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 775 Bytes

customize_your_docker_ps_output.md

File metadata and controls

32 lines (21 loc) · 775 Bytes

Customize your docker ps output

docker ps is nifty, you can even customize the outout to suit your needs.

My customization gives me the following output (squashed for readability):

$ docker ps

NAMES     CONTAINER ID  IMAGE       STATUS      NETWORKS  PORTS
registry  81bbacaeb8b9  registry:2  Up 2 weeks  bridge    0.0.0.0:5000->5000/tcp

The output is defined in: $HOME/.docker/config.json, like so:

{
    "psFormat": "table {{.Names}}\\t{{.ID}}\\t{{.Image}}\\t{{.Status}}\\t{{.Networks}}\\t{{.Ports}}",
}

You can also specify this on the fly:

$ docker ps --format "{{.Names}}"

Please see the documentation for more information.

References