idea docker部署微服务(idea连接docker实现一键部署的方法)
idea docker部署微服务
idea连接docker实现一键部署的方法1.修改docker配置文件,打开2375端口
[root@s162 docker]# vim /usr/lib/systemd/system/docker.service #查找 ExecStart,在末尾添加 #后面加上-H tcp://0.0.0.0:2375 [root@s162 docker]# systemctl daemon-reload [root@s162 docker]# systemctl start docker ## 查看2375端口是否启用 [root@s162 docker]# lsof -i:2375 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME dockerd 27021 root 5u IPv6 352598799 0t0 TCP *:2375 (LISTEN)
2. Idea安装配置docker插件
2.1. idea-plugins市场安装docker插件
略…
2.2. 配置docker
3.springboot项目部署到docker服务器
3.1. 编写docker/dockerfile
3.2.maven添加docker-maven-plugin插件
<plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>1.0.0</version> <configuration> <!--指定生成的镜像名,如果不指定tag,默认会使用latest--> <imageName>jhs/${project.artifactId}:${project.version}</imageName> <!--添加额外的指定标签, 非必须--> <!-- <imageTags> <imageTag>${project.version}</imageTag> </imageTags> --> <!-- 指定 Dockerfile 路径 :项目根路径下--> <dockerDirectory>${project.basedir}/docker</dockerDirectory> <!--指定远程 docker api地址--> <dockerHost>http://192.168.129.162:2375</dockerHost> <!-- copy资源 --> <resources> <resource> <targetPath>/</targetPath> <directory>${project.build.directory}</directory> <include>${project.build.finalName}.jar</include> </resource> </resources> <!--docker build dockerfile时:设置镜像创建时的变量 --> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> </configuration> </plugin>
3.3. docker:build
使用命令$ mvn clean package docker:build -Dmaven.test.skip=true
构建镜像,在docker服务器上查看镜像是否上传成功:
3.4 docker:tag
docker命令行格式为:
#docker tag <imageId or imageName> <nexus-hostname>:<repository-port>/<image>:<tag>
插件配置
<configuration>
补充配置:
<configuration> <image>jhs/${project.artifactId}:${project.version}</image> <!-- docker tag 打标签--> <newName>192.168.129.160:5000/${project.artifactId}:${project.version}</newName> </configuration>
为镜像打上tag标签,为后续的push做准备:mvn clean docker:tag -Dmaven.test.skip=true -DskipDockerBuild
3.5 docker:push
插件配置
<configuration>
补充配置:
<configuration> <!-- docker push 推送到远程镜像仓库--> <!-- serverId: 为在maven setting.xml配置的server信息id--> <serverId>nexus-docker-registry</serverId> <registryUrl>192.168.129.160:5000</registryUrl> <!-- 打上tag的新镜像 push 到nexus--> <imageName>192.168.129.160:5000/${project.artifactId}</imageName> </configuration>
将上文打上tag标签的镜像,推送到私服nexus:mvn clean docker:push -Dmaven.test.skip=true -DskipDockerBuild -DskipDockerTag
3.6 docker插件参数
-DskipDockerBuild
to skip image build-DskipDockerTag
to skip image tag-DskipDockerPush
to skip image push-DskipDocker
to skip any Docker goals
3.7 绑定命令到maven phases
<executions> <execution> <id>build-image</id> <phase>package</phase> <goals> <goal>build</goal> </goals> </execution> <execution> <id>tag-image</id> <phase>package</phase> <goals> <goal>tag</goal> </goals> <configuration> <image>jhs/${project.artifactId}:${project.version}</image> <newName>192.168.129.160:5000/${project.artifactId}:${project.version}</newName> </configuration> </execution> <execution> <id>push-image</id> <phase>deploy</phase> <goals> <goal>push</goal> </goals> <configuration> <!-- docker push 推送到远程镜像仓库--> <!-- serverId: 为在maven setting.xml配置的server信息id--> <serverId>nexus-docker-registry</serverId> <registryUrl>192.168.129.160:5000</registryUrl> <imageName>192.168.129.160:5000/${project.artifactId}</imageName> </configuration> </execution> </executions>
3.8 最佳实践
<properties> <docker.host>http://192.168.129.162:2375</docker.host> <docker.registry.url>192.168.129.160:5000</docker.registry.url> </properties> <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>1.0.0</version> <configuration> <imageName>dic/${project.artifactId}:${project.version}</imageName> <!--添加额外的指定标签(可配置多个), 若果没做指定,则为latest--> <!-- <imageTags> <imageTag>${project.version}</imageTag> </imageTags> --> <!-- 指定 Dockerfile 路径 :项目根路径下--> <dockerDirectory>${project.basedir}/docker</dockerDirectory> <!--指定远程 docker api地址--> <dockerHost>${docker.host}</dockerHost> <!-- copy资源 --> <resources> <resource> <targetPath>/</targetPath> <directory>${project.build.directory}</directory> <include>${project.build.finalName}.jar</include> </resource> </resources> <!--docker build dockerfile时:设置镜像创建时的变量 --> <buildArgs> <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> </buildArgs> </configuration> <executions> <execution> <id>build-image</id> <phase>package</phase> <goals> <goal>build</goal> </goals> </execution> <execution> <id>tag-image</id> <phase>package</phase> <goals> <goal>tag</goal> </goals> <configuration> <image>dic/${project.artifactId}:${project.version}</image> <newName>${docker.registry.url}/${project.artifactId}:${project.version}</newName> </configuration> </execution> <execution> <id>push-image</id> <phase>deploy</phase> <goals> <goal>push</goal> </goals> <configuration> <!-- docker push 推送到远程镜像仓库--> <!-- serverId: 为在maven setting.xml配置的server信息id--> <serverId>nexus-docker-registry</serverId> <registryUrl>${docker.registry.url}</registryUrl> <imageName>${docker.registry.url}/${project.artifactId}</imageName> </configuration> </execution> </executions> </plugin> </plugins> </build>
4.Docker私服仓库Harbor安装的步骤详解(补充)
https://www.jb51.net/article/161964.htm
到此这篇关于idea连接docker实现一键部署的文章就介绍到这了,更多相关idea连接docker一键部署内容请搜索开心学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开心学习网!
- idea安装mybatis(IDEA使用mybatis-generator及配上mysql8.0.3版本遇到的bug)
- idea怎样连接mysql(IDEA配置连接MYSQL数据库遇到Failed这个问题解决)
- idea如何搭建tomcat(IDEA2020.1.2创建web项目配置Tomcat的详细教程)
- idea集成docker-compose(IDEA 集成 docker 实现远程部署的详细步骤)
- docker-compose启动超时(docker compose idea CreateProcess error=2 系统找不到指定的文件的问题)
- idea激活服务器(搭建本地的idea激活服务器的详细教程)
- ideadocker调试(Idea部署远程Docker并配置文件)
- idea生成dockerfile(idea集合docker实现镜像打包一键部署)
- idea怎么在tomcat部署项目(IDEA 配置Tomcat服务器和发布web项目的图文教程)
- docker网页实现idea项目(IDEA 配置Docker的过程)
- 如何看idea连接mysql数据库(IDEA 链接Mysql数据库并执行查询操作的完整代码)
- idea中tomcat快速部署(IDEA编辑器整合Apache Tomcat的详细教程)
- idea的tomcat怎么运行项目(idea配置tomcat启动web项目的图文教程)
- idea社区版使用tomcat部署项目(基于IDEA部署Tomcat服务器的步骤详解)
- idea的mysql如何连接(在IntelliJ IDEA中使用Java连接MySQL数据库的方法详解)
- springboot docker教程(在Idea中使用Docker部署SpringBoot项目的详细步骤)
- 10句英语常用(英语常用900句)
- 爱情能当饭吃吗(爱情能当饭吃吗说说)
- 白T恤穿法(白t恤)
- 你怎么忘了是说先爱我(你怎么忘了如何爱我)
- 做技术难吗(技术难不难)
- 林心如是谁(林心如是谁演的)
热门推荐
- docker镜像配置教程(给Docker更换国内镜像源操作)
- 常见的.NET面试题及推荐答案(一)
- python列表精讲33节(Python列表知识应知应会)
- mac更改mysql密码(Mac下mysql 8.0.22 找回密码的方法)
- mysql快速创建索引(MySQL创建高性能索引的全步骤)
- dedecms中的有些功能如何修改(织梦DedeCMS默认文件夹重命名的方法)
- thinkphpmodel使用教程(Thinkphp5.0 框架Model模型简单用法分析)
- react路由原理解析(React配置子路由的实现)
- mysql索引基本知识(MySql索引使用策略分析)
- python怎么安装queue(python队列Queue的详解)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9