135-1821-9792

Pause容器、infra容器与initContainer怎么使用

本篇内容主要讲解“Pause容器、infra容器与initContainer怎么使用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Pause容器、infra容器与initContainer怎么使用”吧!

网站建设哪家好,找创新互联公司!专注于网页设计、网站建设、微信开发、微信小程序开发、集团企业网站建设等服务项目。为回馈新老客户创新互联还提供了三明免费建站欢迎大家使用!

initContainer, 对外暴露8080端口,作为initContainer, 共享网络,共享PID,共享IPC docker run -d --name pause -p 8080:80 mirrorgooglecontainers/pause-amd64:3.0

nginx 转发代理,监听80,转发到ghost博客系统

$cat <>nginx.conf
error_log stderr;
events { worker_connections 1024; }
hhtp{
  access_log /dev/stdout combined;
  server{
    listen 80 default_server;
    server_name example.com www.example.com;
    location / {
      proxy_pass http://127.0.0.1:2368;
    }
  }
} 
EOF

docker run -d --name nginx -v pwd/nginx.conf:/etc/nginx/nginx.conf --net=container:pause --ipc=container:pause --pid=container:pause nginx

ghost 博客系统,默认端口2368 docker run -d --name ghost --net=container:pause --ipc=container:pause --pid=container:pause ghost

vim /etc/docker/daemonset
"default-ipc-mode": "shareable"
systemctl restart docker

  • PID命名空间:Pod中的不同应用程序可以看到其他应用程序的进程ID;

  • 网络命名空间:Pod中的多个容器能够访问同一个IP和端口范围;

  • IPC命名空间:Pod中的多个容器能够使用SystemV IPC或POSIX消息队列进行通信;

  • UTS命名空间:Pod中的多个容器共享一个主机名;Volumes(共享存储卷):

  • Pod中的各个容器可以访问在Pod级别定义的Volumes;

到此,相信大家对“Pause容器、infra容器与initContainer怎么使用”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!


本文标题:Pause容器、infra容器与initContainer怎么使用
文章路径:http://kswsj.com/article/jjcjjj.html

其他资讯



Copyright © 2009-2022 www.kswsj.com 成都快上网科技有限公司 版权所有 蜀ICP备19037934号