# HG changeset patch # User smith@nwoca.org # Date 1458260652 -3600 # Node ID b55117e40cd7862f995e28aba178568257213c25 # Parent 6aedaa7220db9b23e2cd3a6fe4aec3c83444ede5 fix argument diff -r 6aedaa7220db -r b55117e40cd7 scripts/capture.sh --- a/scripts/capture.sh Fri Mar 18 01:16:32 2016 +0100 +++ b/scripts/capture.sh Fri Mar 18 01:24:12 2016 +0100 @@ -1,3 +1,3 @@ #!/bin/bash # writes current logs to standard outfrom running containers in current compose project. -docker-compose ps -q | xargs -I{} cat $(docker inspect --format='{{.LogPath}}' {} ) +docker-compose ps -q | xargs -I{} bash -c "cat $(docker inspect --format='{{.LogPath}}' {} ) "