加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
zhscau 提交于 2017-11-21 19:14 . dind based on centos
FROM centos:latest
MAINTAINER AixC
# Systemd integration
# See : https://marketplace.automic.com/details/centos-official-docker-image
ENV container docker
RUN yum -y swap -- remove fakesystemd -- install systemd systemd-libs
RUN yum -y update; yum clean all; \
(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/*;
# Install Docker CE
RUN yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
RUN yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
RUN yum install -y docker-ce
# Install the magic wrapper.
ADD ./wrapdocker /usr/local/bin/wrapdocker
RUN chmod +x /usr/local/bin/wrapdocker
# Start docker service automatically
RUN systemctl enable docker.service
# Define additional metadata for our image.
VOLUME [ "/sys/fs/cgroup" ]
CMD ["wrapdocker", "/usr/sbin/init"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化