我和puppetlabs docker module在一起。
我已将以下代码添加到我的puppetmaster中作为测试用例:
docker::run { 'helloworld':
image => 'base',
command => '/bin/sh -c "while true; do echo hello world; sleep 1; done"',
}
在我的up客户端上,我正在运行Amazon Linux AMI。运行木偶时,我收到以下错误:
错误: / Stage [main] / Base / Docker :: Run [helloworld] / Service [docker-helloworld]: 提供程序systemd在此主机上不起作用
有意义的是,Amazon Linux没有Systemd。解决此问题的正确方法是什么?有没有一种方法可以使docker模块在没有systemd的情况下工作?
答案 0 :(得分:1)