本篇内容主要讲解“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怎么使用”有了更深的了解,不妨来实际操作一番吧!这里是天达云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!