已解决,由于安全原因没法使用systemctl命令,用docker-systemctl-replacement替换/bin/systemctl就可以了,其实就相当于多加了一个命令兼容层。
apt update && apt install curl wget python2 -y
然后重点来了,我们要使用这个docker-systemctl-replacement作为systemctl的替换命令。
wget https://raw.githubusercontent.com/gdraheim/docker-systemctl-replacement/master/files/docker/systemctl.py -O /bin/systemctl
chmod a+x /bin/systemctl
好了,就这么简单,这时候你就可以正常使用systemctl了,很多一键脚本都可以跑通了
评论区