Skip to content

Commit

Permalink
🙈 发布 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fzshuai committed May 3, 2024
1 parent cdfee2c commit 92f3a07
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .run/fzshuai-monitor-admin.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration default="false" name="fzshuai-monitor-admin" type="docker-deploy" factoryName="dockerfile" server-name="Docker">
<deployment type="dockerfile">
<settings>
<option name="imageTag" value="fzshuai/fzshuai-monitor-admin:2.1.0" />
<option name="imageTag" value="fzshuai/fzshuai-monitor-admin:3.0.0" />
<option name="buildOnly" value="true" />
<option name="sourceFilePath" value="fzshuai-extend/fzshuai-monitor-admin/Dockerfile" />
</settings>
Expand Down
2 changes: 1 addition & 1 deletion .run/fzshuai-server.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration default="false" name="fzshuai-server" type="docker-deploy" factoryName="dockerfile" server-name="Docker">
<deployment type="dockerfile">
<settings>
<option name="imageTag" value="fzshuai/fzshuai-server:2.1.0" />
<option name="imageTag" value="fzshuai/fzshuai-server:3.0.0" />
<option name="buildOnly" value="true" />
<option name="sourceFilePath" value="fzshuai-admin/Dockerfile" />
</settings>
Expand Down
2 changes: 1 addition & 1 deletion .run/fzshuai-xxl-job-admin.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration default="false" name="fzshuai-xxl-job-admin" type="docker-deploy" factoryName="dockerfile" server-name="Docker">
<deployment type="dockerfile">
<settings>
<option name="imageTag" value="fzshuai/fzshuai-xxl-job-admin:2.1.0" />
<option name="imageTag" value="fzshuai/fzshuai-xxl-job-admin:3.0.0" />
<option name="buildOnly" value="true" />
<option name="sourceFilePath" value="fzshuai-extend/fzshuai-xxl-job-admin/Dockerfile" />
</settings>
Expand Down
2 changes: 1 addition & 1 deletion fzshuai-admin/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ruoyi:
# 版本
version: ${revision}
# 版权年份
copyrightYear: 2024
copyrightYear: 2023
# 缓存懒加载
cacheLazy: false

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<description>Fzshuai-Weblog 博客系统</description>

<properties>
<revision>2.1.0</revision>
<revision>3.0.0</revision>
<spring-boot.version>2.7.18</spring-boot.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
# ./fzshuai-blog.sh start 启动 stop 停止 restart 重启 status 状态
# ./fzshuai-weblog.sh start 启动 stop 停止 restart 重启 status 状态
AppName=fzshuai-admin.jar

# JVM参数
Expand Down
11 changes: 7 additions & 4 deletions script/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ services:
- /docker/mysql/data/:/var/lib/mysql/
# 配置挂载
- /docker/mysql/conf/:/etc/mysql/conf.d/
# 日志文件
- /docker/mysql/log:/var/log/
# 让容器的时钟与宿主机时钟同步,避免时区的问题,ro是read only的意思,就是只读
- /etc/localtime:/etc/localtime:ro
command:
Expand All @@ -27,6 +29,7 @@ services:
--collation-server=utf8mb4_general_ci
--explicit_defaults_for_timestamp=true
--lower_case_table_names=1
--default-time-zone='Asia/Shanghai'
deploy:
resources:
limits:
Expand Down Expand Up @@ -134,7 +137,7 @@ services:


fzshuai-server1:
image: fzshuai/fzshuai-server:2.1.0
image: fzshuai/fzshuai-server:3.0.0
container_name: fzshuai-server1
environment:
# 时区上海
Expand All @@ -151,7 +154,7 @@ services:
network_mode: "host"

fzshuai-server2:
image: fzshuai/fzshuai-server:2.1.0
image: fzshuai/fzshuai-server:3.0.0
container_name: fzshuai-server2
environment:
# 时区上海
Expand All @@ -168,7 +171,7 @@ services:
network_mode: "host"

fzshuai-monitor-admin:
image: fzshuai/fzshuai-monitor-admin:2.1.0
image: fzshuai/fzshuai-monitor-admin:3.0.0
container_name: fzshuai-monitor-admin
environment:
# 时区上海
Expand All @@ -182,7 +185,7 @@ services:
network_mode: "host"

fzshuai-xxl-job-admin:
image: fzshuai/fzshuai-xxl-job-admin:2.1.0
image: fzshuai/fzshuai-xxl-job-admin:3.0.0
container_name: fzshuai-xxl-job-admin
environment:
# 时区上海
Expand Down

0 comments on commit 92f3a07

Please sign in to comment.