您好,登录后才能下订单哦!
本篇内容主要讲解“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 <<EOF >>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怎么使用”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。