update README.md
This commit is contained in:
@@ -85,11 +85,11 @@ JeeSite 是一个低代码开发平台,具有较高的封装度、扩展性,
|
||||
|
||||
## 生态系统
|
||||
|
||||
* 分布式微服务(Spring Cloud):<https://gitee.com/thinkgem/jeesite4-cloud>
|
||||
* 分布式微服务(Spring Cloud):<https://gitee.com/thinkgem/jeesite-cloud>
|
||||
* Flowable业务流程引擎(BPM):<http://jeesite.com/docs/bpm/>
|
||||
* JFlow工作流引擎:<https://gitee.com/thinkgem/jeesite4-jflow>
|
||||
* JFlow工作流引擎:<https://gitee.com/thinkgem/jeesite-jflow>
|
||||
* 多站点内容管理模块(CMS):<https://jeesite.com/docs/cms/>
|
||||
* 手机端移动端:<https://gitee.com/thinkgem/jeesite4-uniapp>
|
||||
* 手机端移动端:<https://gitee.com/thinkgem/jeesite-uniapp>
|
||||
* PC客户端程序:<https://gitee.com/thinkgem/jeesite-client>
|
||||
* Vue3分离版本:<https://gitee.com/thinkgem/jeesite-vue>
|
||||
* JeeSite统一认证:<https://jeesite.com/docs/oauth2-server>
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
|
||||
<!-- docker setting -->
|
||||
<docker.dockerHost>http://centos9:2375</docker.dockerHost>
|
||||
<docker.dockerHost>http://docker.local:2375</docker.dockerHost>
|
||||
<docker.imageName>thinkgem/${project.artifactId}:5.5</docker.imageName>
|
||||
<docker.run.port>8980:8980</docker.run.port>
|
||||
|
||||
@@ -354,11 +354,11 @@
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- Docker 插件 https://github.com/fabric8io/docker-maven-plugin -->
|
||||
<!-- Docker 插件 https://dmp.fabric8.io - https://github.com/fabric8io/docker-maven-plugin -->
|
||||
<plugin>
|
||||
<groupId>io.fabric8</groupId>
|
||||
<artifactId>docker-maven-plugin</artifactId>
|
||||
<version>0.39.1</version>
|
||||
<version>0.43.4</version>
|
||||
<configuration>
|
||||
<dockerHost>${docker.dockerHost}</dockerHost>
|
||||
<verbose>true</verbose>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<start-class>com.jeesite.modules.FastApplication</start-class>
|
||||
|
||||
<!-- docker setting -->
|
||||
<docker.dockerHost>http://centos9:2375</docker.dockerHost>
|
||||
<docker.dockerHost>http://docker.local:2375</docker.dockerHost>
|
||||
<docker.imageName>thinkgem/jeesite-web:latest</docker.imageName>
|
||||
<docker.run.port>8980:8980</docker.run.port>
|
||||
|
||||
@@ -122,7 +122,43 @@
|
||||
<wtpContextName>${finalName}</wtpContextName>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
||||
<!-- Docker 插件 https://dmp.fabric8.io - https://github.com/fabric8io/docker-maven-plugin -->
|
||||
<plugin>
|
||||
<groupId>io.fabric8</groupId>
|
||||
<artifactId>docker-maven-plugin</artifactId>
|
||||
<version>0.43.4</version>
|
||||
<configuration>
|
||||
<dockerHost>${docker.dockerHost}</dockerHost>
|
||||
<verbose>true</verbose>
|
||||
<images>
|
||||
<image>
|
||||
<name>${docker.imageName}</name>
|
||||
<alias>${project.artifactId}</alias>
|
||||
<build>
|
||||
<dockerFile>${project.basedir}/bin/docker/Dockerfile</dockerFile>
|
||||
<assembly>
|
||||
<descriptorRef>artifact</descriptorRef>
|
||||
</assembly>
|
||||
<buildx>
|
||||
<platforms>
|
||||
<platform>linux/amd64</platform>
|
||||
<platform>linux/arm64</platform>
|
||||
</platforms>
|
||||
</buildx>
|
||||
</build>
|
||||
<run>
|
||||
<ports>
|
||||
<port>${docker.run.port}</port>
|
||||
</ports>
|
||||
<network>
|
||||
<mode>host</mode>
|
||||
</network>
|
||||
</run>
|
||||
</image>
|
||||
</images>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user