Expand arguments to be more self-explanatory in logs

This commit is contained in:
David Heinemeier Hansson
2023-02-19 18:11:06 +01:00
parent 5299826146
commit 5898fdd8f4
12 changed files with 77 additions and 77 deletions

View File

@@ -18,7 +18,7 @@ module Mrsk::Commands
end
def container_id_for(container_name:)
docker :container, :ls, "-a", "-f", "name=#{container_name}", "-q"
docker :container, :ls, "--all", "--filter", "name=#{container_name}", "--quiet"
end
private