Skip to content
Advertisement

Executing a shell script having docker | docker commands not found

I created a pipeline in Azure with Ubuntu 18.04. My requirement was to run a docker image using bash script and for the same below script was created but on execution I received an error “docker command does not exist and docker: invalid reference format.

test.sh

JavaScript

Error

JavaScript

To describe in detail, here are the tasks created on az pipeline :-

JavaScript

enter image description here

JavaScript

enter image description here

JavaScript

commands work and it worked perfectly fine with no issues. But in task3, when I tried to execute the scripts with the same commands it failed.

enter image description here

Output of Task2

enter image description here

JavaScript

enter image description here

Output of Task3 enter image description here

Advertisement

Answer

The problem was with Windows or DOS-style line endings but while executing in Azure pipeline it did not throw the actual error. Later it was understood that each line was being terminated with a Carriage Return followed by a Line Feed character. If a script file was saved with Windows line endings, Bash sees the file as

#!/bin/bash^M ^M cd “src”^M

having a special character at the end.

Try running dos2unix on the script solved the problem.

http://dos2unix.sourceforge.net/

Or just rewrite the script in your Unix env using vi and test.

Unix uses different line endings so can’t read the file you created on Windows. Hence it is seeing ^M as an illegal character.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement