-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: docker compose ps #5
Comments
Hmm, is their a relatively easy way to get the data of I guess I could add a filter on the label But if anyone want to add a filter docker-compose filter (aka only show container with this specific project label), I guess that could be in-scope. |
Wouldn't reading the output directly from |
No, either I would:
also I display potentially more data than the default |
You can do this with regular docker ps like this:
the filter flag here doesn't seem to work exactly the same? this command:
seems to return all the containers. I think supporting the label filter would be sufficient to fix this? |
Looking thru your code, it looks like you just handoff the filter to the docker API. Not sure why this isn't working, maybe |
A lot of times,
docker compose ps
looks as worse asdocker ps
. Can you make this program work withdocker compose ps
too?Adding
--compose
flag and have that aliased todocker compose ps
in the shell configuration files should be sufficient.The text was updated successfully, but these errors were encountered: