pycharm docker-compose do not change the command and the arguments

In my pycharm  i have the docker plugin which help me to start me containers in my docker compose file.

 

But When I'm using the remote python interpreter "docker compose"  it's working but it is change my starting command.

Before the remote interpreter:

"Path": "/init",
"Args": [
"/bin/sh",
"-c",
"/root/start.sh"
],

 

After the remote interpreter:

"Path": "/init",
"Args": [
"python",
"-u",
"/opt/.pycharm_helpers/pydev/pydevd.py",
"--multiprocess",
"--qt-support=auto",
"--port",
"59913",
"--file",
"/opt/project/Service.py"
],

 

how can handle this?

1

Please sign in to leave a comment.