作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Dockerfile 构建 docker 镜像:
FROM centos:centos7.1.1503
MAINTAINER foo <foo@bar.com>
ENV TZ "Asia/Shanghai"
ENV TERM xterm
RUN \
yum update -y && \
yum install -y epel-release &&\
yum update -y && \
yum install -y curl wget tar bzip2 unzip vim-enhanced passwd sudo yum-utils hostname net-tools rsync man && \
yum install -y gcc gcc-c++ git make automake cmake patch logrotate python-devel libpng-devel libjpeg-devel && \
yum install -y pwgen python-pip && \
yum clean all
Error: libselinux conflicts with fakesystemd-1-17.el7.centos.noarch
FROM centos:centos7.1.1503
至
FROM centos:centos7
,一切都会好起来的。那么,我应该如何使用
centos7.1.1503
最佳答案
在进行任何安装之前,尝试在您创建的容器中运行它:
yum swap -y fakesystemd systemd && yum clean all
yum update -y && yum clean all
或者在您提示的第一次 RUN 开始之前的 Dockerfile 中:
RUN yum swap -y fakesystemd systemd && yum clean all \
&& yum update -y && yum clean all
希望有用!
关于Docker 的错误 : libselinux conflicts with fakesystemd,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42616918/
我正在使用 Dockerfile 构建 docker 镜像: FROM centos:centos7.1.1503 MAINTAINER foo ENV TZ "Asia/Shangha
我是一名优秀的程序员,十分优秀!