摘要: docker commit web1 httpd:v1 docker run -d --name web5 -p 85:80 httpd:v1 阅读全文
posted @ 2024-11-23 17:24 cloud-qing0212 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 需求:创建1个myvolume1的空卷,将其挂载给web1的容器,挂载目录/usr/local/apache2/htdocs 运行两个web2 web3的容器,更新web2中容器内容为 This is a test! 通过宿主机访问web3查看输出内容。 docker volume create m 阅读全文
posted @ 2024-11-23 17:01 cloud-qing0212 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 需求:创建两个自定义容器,分别使用自定义网络,使其互通 1. 创建容器 docker run -d --name web1 -p 80:80 httpd 2. 创建网络 docker network create --driver bridge --subnet 192.168.1.0/24 net 阅读全文
posted @ 2024-11-23 16:28 cloud-qing0212 阅读(3) 评论(0) 推荐(0) 编辑