当前位置:   article > 正文

ubuntu基础镜像中容器无法使用systemctl_ubuntu没有systemctl

ubuntu没有systemctl
--privileged=true        /sbin/init
  • 1
docker run -itd --name=bot  --privileged=true  bot:latest  /sbin/init

docker exec -it bot bash
  • 1
  • 2
  • 3

Dockerfile:
FROM ubuntu:18.04 基础镜像run起来的容器安装了redis,mongodb。无法使用systemctl管理这些服务。如下上启动容器则可用systemctl:

build的镜像:

root@ubuntu:/home/bella# docker images
REPOSITORY   TAG       IMAGE ID       CREATED       SIZE
bot          latest    f5af0d7a4479   7 hours ago   972MB
  • 1
  • 2
  • 3

底层ubuntu镜像没有安装vim,如果需要修改配置文件。
比如systemctl start redis-server 无法启动服务,需要redis.conf里的127.0.0.1 ::1为127.0.0.1

sed -i 's/127.0.0.1 ::1/127.0.0.1/g' /etc/redis/redis.conf
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/605533
推荐阅读
相关标签
  

闽ICP备14008679号