List docker-compose instances

This commit is contained in:
Martin Blazik
2022-09-24 09:24:40 +02:00
parent 6f7582e204
commit efca114ee1

7
bin/dc-list Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
# List all docker-compose instances
# "com.docker.compose.service"
docker ps -q | while read; do docker inspect $REPLY --format '{{index .Config.Labels "com.docker.compose.project.working_dir"}}'; done | sort | uniq