Solution to the problem that docker CMD/ENTRYPOINT executes the sh script: not found/run.sh:

Solution to the problem that docker CMD/ENTRYPOINT executes the sh script: not found/run.sh:

There is no problem with the Dockerfile configuration, why does an error occur when executing the ENTRYPOINT command?

The container exited as soon as it started.

I checked a lot of information and thought about it for a long time before I found the reason.

run.sh is copied to the container by the COPY instruction. However, the local machine is Windows, and the default line break character is \n, so it cannot be executed after being copied.

The solution is simple, just switch the file format to LF.

Supplementary knowledge: When starting a container in docker, the if command in the sh script called by CMD reports an unexpected symbol if[[. Solution

Recently, I wrote an image through Dockerfile. The sh script (start.sh) was called in CMD to start the container. When it was started through docker run, the startup failed. I performed docker logs container ID and found that the error was: Unexpected symbol if [[

I successfully executed start.sh directly in the external Linux system. I entered the container through docker exec and called start.sh in the container without any errors. All the programs that needed to be started in the command were successfully started.

There is no problem in executing the script directly, but an error occurs through docker run, which is puzzling.

The error code segment in start.sh is as follows

if [[ -e /home/dc/testnn-aaa.zip ]];then
 rm -rf /home/testnn-aaa
 unzip -q -o -d /home testnn-aaa.zip
 echo "unzip zip finished" 
else 
 echo "dc zip not exist"
fi

After checking and comparing, because my start.sh also has an if statement before the error statement, but no error is reported, I found that the difference between the two places is that the first if uses a single []. If the code is changed to [], it will succeed. The modification is as follows:

if [ -e /home/dc/testnn-aaa.zip ];then

The above article on solving the problem of docker CMD/ENTRYPOINT executing sh script: not found/run.sh: is all the content that the editor shared with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • The difference between ENTRYPOINT and CMD in Dockerfile
  • Use non-root users to execute script operations in docker containers
  • Docker file storage path, get container startup command operation

<<:  Vue interpretation of responsive principle source code analysis

>>:  HTML is actually the application of learning several important tags

Recommend

Vue uses echart to customize labels and colors

This article example shares the specific code of ...

How to use environment variables in nginx configuration file

Preface Nginx is an HTTP server designed for perf...

Linux kernel device driver character device driver notes

/******************** * Character device driver**...

Detailed steps for developing Java payment interface for Alipay

Table of contents first step Step 2 Step 3 Step 4...

How to build gitlab on centos6

Preface The original project was placed on the pu...

Sample code for implementing music player with native JS

This article mainly introduces the sample code of...

Detailed deployment of docker+gitlab+gitlab-runner

environment Server: centos7 Client: window Deploy...

About Vue virtual dom problem

Table of contents 1. What is virtual dom? 2. Why ...

Implementation process of row_number in MySQL

1. Background Generally, in a data warehouse envi...

Detailed explanation of the solution for migrating antd+react projects to vite

Antd+react+webpack is often the standard combinat...

Using react+redux to implement counter function and problems encountered

Redux is a simple state manager. We will not trac...

Vue makes a simple random roll call

Table of contents Layout part: <div id="a...