Open yyh210 opened 1 year ago
In the 'main' function of docker_deploy.sh script, if [ "$1" = "" ] || [ "$" = "--help" ] should be if [ "$1" = "" ] || [ "$1" = "--help" ]. Otherwise, option --help will not work,
if [ "$1" = "" ] || [ "$" = "--help" ]
if [ "$1" = "" ] || [ "$1" = "--help" ]
--help
In the 'main' function of docker_deploy.sh script,
if [ "$1" = "" ] || [ "$" = "--help" ]
should beif [ "$1" = "" ] || [ "$1" = "--help" ]
. Otherwise, option--help
will not work,