Docker部署常见应用-Tomcat & Nginx

Docker部署常见应用-Tomcat & Nginx

全部操作均在 "禁用防火墙" 状态演示;

systemctl stop firewalld

部署的基本流程

搜索镜像 -> 拉取镜像 -> 创建专用目录 -> 运行容器 -> 测试

3.部署Tomcat

3.1 搜索镜像

docker search tomcat

3.2 拉取镜像

docker pull tomcat

3.3 创建tomcat专用目录

mkdir tomcat

3.4 运行容器

临时容器

docker run --name temp -itd tomcat

docker cp temp:/usr/local/tomcat/conf ./tomcat/

docker rm -f temp

正式容器

docker run --name mytomcat -itd

-p 8080:8080

-v /root/tomcat/conf:/usr/local/tomcat/conf

-v /root/tomcat/webapps:/usr/local/tomcat/webapps

tomcat

3.5 测试

宿主机器

/root/tomcat/webapps中创建目录myweb,里面创建文件index.html

浏览器访问 http://192.168.56.101:8080/myweb/index.html

4.部署Nginx

4.1 搜索镜像

docker search nginx

4.2 拉取镜像

docker pull nginx

4.3 创建nginx专用目录

mkdir nginx

4.4 运行容器

临时容器

docker run --name temp -itd nginx

docker cp temp:/etc/nginx/nginx.conf ./nginx/nginx.conf # 主配置(nginx.conf)

docker cp temp:/etc/nginx/conf.d ./nginx/ # 从配置(default.conf)

docker cp temp:/usr/share/nginx/html ./nginx/

docker rm -f temp

正式容器

docker run --name mynginx -itd

-p 80:80

-v /root/nginx/conf.d:/etc/nginx/conf.d

-v /root/nginx/html:/usr/share/nginx/html/

-v /root/nginx/nginx.conf:/etc/nginx/nginx.conf

nginx

4.5 测试

外部机器访问 http://192.168.56.101:80

相关推荐
算法与编程之美30 分钟前
文件的写入与读取
linux·运维·服务器
xianwu5431 小时前
反向代理模块
linux·开发语言·网络·git
Amelio_Ming1 小时前
Permissions 0755 for ‘/etc/ssh/ssh_host_rsa_key‘ are too open.问题解决
linux·运维·ssh
Ven%2 小时前
centos查看硬盘资源使用情况命令大全
linux·运维·centos
TeYiToKu3 小时前
笔记整理—linux驱动开发部分(9)framebuffer驱动框架
linux·c语言·arm开发·驱动开发·笔记·嵌入式硬件·arm
dsywws3 小时前
Linux学习笔记之时间日期和查找和解压缩指令
linux·笔记·学习
yeyuningzi3 小时前
Debian 12环境里部署nginx步骤记录
linux·运维·服务器
上辈子杀猪这辈子学IT3 小时前
【Zookeeper集群搭建】安装zookeeper、zookeeper集群配置、zookeeper启动与关闭、zookeeper的shell命令操作
linux·hadoop·zookeeper·centos·debian
minihuabei3 小时前
linux centos 安装redis
linux·redis·centos
lldhsds4 小时前
书生大模型实战营第四期-入门岛-1. Linux前置基础
linux