diff options
| -rw-r--r-- | Propellor/Property/Docker.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Propellor/Property/Docker.hs b/Propellor/Property/Docker.hs index 97253a7f..a8f302e5 100644 --- a/Propellor/Property/Docker.hs +++ b/Propellor/Property/Docker.hs @@ -94,7 +94,7 @@ containerProperties findcontainer = \h -> case toContainerId h of containerDesc :: ContainerId -> Property -> Property containerDesc cid p = p `describe` desc where - desc = "docker container " ++ fromContainerId cid ++ " " ++ propertyDesc p + desc = "[" ++ fromContainerId cid ++ "] " ++ propertyDesc p -- | Ensures that a docker container is set up and running. The container -- has its own Properties which are handled by running propellor |
