Dockerfile for systemd base image

FROM centos:7
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"]

  

$ docker build --rm -t ghoiufyia/centos7 .

  run的时候不能带"/bin/bash"等执行语句,否则会覆盖原先的CMD命令

docker run --privileged  -tid  centos7

  

docker exec -it "开启的容器的id" /bin/bash

  

 

相关文章:

  • 2022-12-23
  • 2022-01-04
  • 2021-11-10
  • 2021-06-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-03-10
  • 2021-10-22
  • 2021-09-10
  • 2021-10-27
  • 2021-06-01
  • 2022-12-23
相关资源
相似解决方案