From 72be3ce41121594bfc387573c0de6091dd62b85a Mon Sep 17 00:00:00 2001 From: Benjamin Dweck Date: Fri, 16 Oct 2020 00:10:03 +0200 Subject: [PATCH] Fixed warnings in run-broker.sh --- test/run-broker.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/run-broker.sh b/test/run-broker.sh index c5a6fa8..a58c5a3 100644 --- a/test/run-broker.sh +++ b/test/run-broker.sh @@ -1,3 +1,8 @@ #!/bin/bash -docker run -it --rm --user $(echo $UID) --name mosquitto -p 8883:8883 -v $(pwd)/broker-config:/mosquitto/config eclipse-mosquitto +docker run -it --rm \ + --user "$UID" \ + -p 8883:8883 \ + -v "$(pwd)/broker-config:/mosquitto/config" \ + --name mosquitto \ + eclipse-mosquitto \ No newline at end of file