From 1cccb0e9824e5f9c82448a51237b247e10cbd01c Mon Sep 17 00:00:00 2001 From: Jeremy Graston Date: Sun, 18 Jul 2021 02:12:16 -0600 Subject: [PATCH] Removes redundant docker 'start' from start function as docker 'up' handles the former. --- webodm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webodm.sh b/webodm.sh index 9f4fd90d..f4456ca7 100755 --- a/webodm.sh +++ b/webodm.sh @@ -265,7 +265,7 @@ start(){ echo "Will enable SSL ($method)" fi - command="$command start || $command up" + command="$command up" if [[ $detached = true ]]; then command+=" -d"