Skip to content

Instantly share code, notes, and snippets.

@mortenson
Last active November 5, 2023 13:38
Show Gist options
  • Save mortenson/538027ef218a52e190be7b9b2c17a3ca to your computer and use it in GitHub Desktop.
Save mortenson/538027ef218a52e190be7b9b2c17a3ca to your computer and use it in GitHub Desktop.
List all Docker Compose projects currently running
#!/bin/bash
docker ps --filter "label=com.docker.compose.project" -q | xargs docker inspect --format='{{index .Config.Labels "com.docker.compose.project"}}'| sort | uniq
@stephankn
Copy link

thanks

@ohihn
Copy link

ohihn commented Jan 24, 2023

Also works for me, is a little bit shorter

docker compose ls --format json | jq '.[].Name' -r

@robozb
Copy link

robozb commented Aug 2, 2023

Thank you so much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment