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

相关推荐
odoo-卜永20 分钟前
ubuntu22.04连接爱普生打印机型号L385
linux·经验分享·ubuntu
小麦嵌入式1 小时前
Linux驱动开发实战(十一):GPIO子系统深度解析与RGB LED驱动实践
linux·c语言·驱动开发·stm32·嵌入式硬件·物联网·ubuntu
刘若水1 小时前
Linux: 进程信号初识
linux·运维·服务器
共享家95273 小时前
深入剖析Linux常用命令,助力高效操作
linux·运维·服务器
Zfox_4 小时前
【C++项目】从零实现RPC框架「四」:业务层实现与项目使用
linux·开发语言·c++·rpc·项目
吃旺旺雪饼的小男孩4 小时前
Ubuntu 22.04 安装和运行 EDK2 超详细教程
linux·运维·ubuntu
IT小馋猫4 小时前
Linux 企业项目服务器组建(附脚本)
linux·服务器·网络
阿政一号4 小时前
Linux进程间通信:【目的】【管道】【匿名管道】【命名管道】【System V 共享内存】
linux·运维·服务器·进程间通信
又过一个秋4 小时前
【sylar-webserver】7 定时器模块
linux·c++
啊哦1115 小时前
配置防火墙和SELinux(1)
linux·服务器·网络