8

Dockerfile

FROM centos:7
ENV container docker
VOLUME ["/sys/fs/cgroup"]
RUN yum -y update
RUN yum install -y httpd
RUN systemctl start httpd.service
ADD . /code
WORKDIR /code

码头工人-compose.yml

version: '2'
services:
web:
   privileged: true
   build: .
   ports:
    - "80:80"
   volumes:
    - .:/code

命令

docker-compose build

错误

第 6 步:运行 systemctl start httpd.service ---> Running in 5989c6576ac9 ?[91mFailed to get D-Bus connection: Operation not allowed ?[0m?[31mERROR?[0m: Service 'web' failed to build: The command' /bin/sh -c syste mctl start httpd.service' 返回一个非零代码:1

Obs : 在 Windows 7 上运行 :(

任何提示?

4

2 回答 2

4

正如centos docker image repository中解释的那样,Systemd 默认情况下是不活动的。为了使用 systemd,您需要包含类似于以下示例 Dockerfile 的文本:

FROM centos:7
MAINTAINER "you" <your@email.here>
ENV container docker
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
rm -f /lib/systemd/system/multi-user.target.wants/*;\
rm -f /etc/systemd/system/*.wants/*;\
rm -f /lib/systemd/system/local-fs.target.wants/*; \
rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
rm -f /lib/systemd/system/basic.target.wants/*;\
rm -f /lib/systemd/system/anaconda.target.wants/*;
VOLUME [ "/sys/fs/cgroup" ]
CMD ["/usr/sbin/init"]

此 Dockerfile 删除了许多可能导致问题的单元文件。从这里开始,您已准备好构建您的基础映像。

$ docker build --rm -t local/c7-systemd .

为了使用上面创建的启用 systemd 的基本容器,您需要将 Dockerfile 更改为:

FROM local/c7-systemd
ENV container docker
VOLUME ["/sys/fs/cgroup"]
RUN yum -y update
RUN yum install -y httpd
RUN systemctl start httpd.service
ADD . /code
WORKDIR /code
于 2016-05-28T20:56:16.320 回答
1

对于同样的问题,我创建了一个docker-systemctl-replacement,它将执行“systemctl start httpd.service”将执行的步骤......但不需要正在运行的 SystemD。只需说“systemctl.py start httpd.service”,看看是否有效。

于 2017-03-23T15:03:02.330 回答