Member since
10-27-2019
1
Post
3
Kudos Received
0
Solutions
10-27-2019
10:07 AM
3 Kudos
The deploy script is using the bash == operator to compare strings when it has to set the $hostname variable. However, the script is executed with sh and not bash. So the comparison fails, the $hostname is not set and it results in a bugged call of the docker run command. So, remove the of the two = when it compares the flavor to set $hostname variable properly. Or, you can run the script with bash instead of sh. Bye!
... View more