怎样在小程序里实现标题的更改
723
2022-10-07
Dockerfile创建tomcat镜像
系统选用Ubuntu server 16.04卸载防火墙
#apt-get remove ufw
更新源以及软件包
#apt-get update && apt-get upgrade
安装openssh server
#apt-get install openssh-server
安装docker
#apt-get install docker.io
启动docker
#service docker start
-centos镜像
#docker pull centos
安装完成后执行命令查看镜像
#docker images
将tomcat介质、jdk以及Docker传到/home/docker下,介质在网盘链接:密码:jzi7
Dockerfile编写
FROM centos MAINTAINER hbhe
在/home/docker下执行命令生成tomcat镜像
#docker build -t=hbhe/tomcat:0.1 .
执行命令启动tomcat镜像
#docker run -i -t -p 8080:8080 hbhe/tomcat:0.1 bash
启动tomcat
查看当前运行的docker容器
访问tomcat的应用http://192.168.1.114:8080/hellojsp
Docker
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~