Removes redundant docker 'start' from start function as docker 'up' handles the former.

pull/1024/head
Jeremy Graston 2021-07-18 02:12:16 -06:00
rodzic d3b664e883
commit 1cccb0e982
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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"