You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the 'main' function of docker_deploy.sh script, if [ "$1" = "" ] || [ "$" = "--help" ] should be if [ "$1" = "" ] || [ "$1" = "--help" ] . Otherwise, option --help will not work,
The text was updated successfully, but these errors were encountered:
In the 'main' function of docker_deploy.sh script,
if [ "$1" = "" ] || [ "$" = "--help" ]
should beif [ "$1" = "" ] || [ "$1" = "--help" ]
. Otherwise, option--help
will not work,The text was updated successfully, but these errors were encountered: