我有一个简单的 python 脚本,我想在 docker 容器的后台启动一个守护程序服务
/sbin/start-stop-daemon --start --user root --make-pidfile --pidfile /var/lock/subsys/my-application.pid --exec 'python /opt/app/uc/monitor/bin/my-application.py'
当我在 shell 中执行这个命令时,我得到
/sbin/start-stop-daemon: unable to stat //python /opt/app/uc/monitor/bin/my-application.py (No such file or directory)
但是,当仅在 shell 中执行以下命令时,它可以工作
python /opt/app/uc/monitor/bin/my-application.py
我确定 python 已安装并且所有链接都已设置。
谢谢您的帮助