[Docker] Display only containers’ name

Normally, the command ‘docker ps -a’ allows display all the informations of docker, but if we want only the names of containers, we can do like this :

docker ps --format '{{.Names}}'

One comment on “[Docker] Display only containers’ name

Leave a comment