摘要:
1,理解docker0 2,启动tomcat容器: [root@CentOs ~]# docker run -d -P --name tomcat01 tomcat14d77b1819d72094eb584d07be1f70499ca8ca9aa5dc75aebb22d0af5400ad40[roo 阅读全文
摘要:
问题:查看容器ip时执行命令 docker exec -it tomcat01 ip addr 报错 解决方案: 进入容器,执行 apt update && apt install -y iproute2命令 之后就可以正常执行了! 或者也可以执行 docker inspect -f '{{rang 阅读全文
摘要:
学到这里,下面的两幅图就可以看明白了吧 阅读全文
摘要:
1,在dockerhub上注册自己的账号 2,登录 [root@CentOs WEB-INF]# docker login --helpUsage: docker login [OPTIONS] [SERVER]Log in to a Docker registry.If no server is 阅读全文
摘要:
1,准备镜像文件 tomcat 和jdk的压缩包 如果没有压缩包的话点击下方链接下载 jdk: 链接:https://pan.baidu.com/s/1qvc_54hUzIGdNlBdALfuXQ 提取码:dquo tomcat : 链接:https://pan.baidu.com/s/1xs4-o 阅读全文
摘要:
问题:构建自己tomcat镜像时出现问题报错:Error response from daemon: failed to parse Dockerfile: ENV must have two arguments 解决:我这里有两个问题 第一个:JAVA_HOME与后面的/usr/local之间是有 阅读全文