File tree Expand file tree Collapse file tree 11 files changed +31
-20
lines changed Expand file tree Collapse file tree 11 files changed +31
-20
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ ps: 虽然我知道,大部分人都是来了**直接下载源代码**后就潇
54
54
# 功能简介
55
55
56
56
- ** Docker一键部署** :支持 Docker 的方式一键启动服务
57
- - ** 广告位管理** :支持五种广告位:首页开屏广告、侧边栏顶部、侧边栏底部、文章详情底部、评论框顶部,站长可以随时随意更换自己的广告链接,赚外快不成问题!
57
+ - ** 广告位管理** :支持五种广告位:首页开屏广告、侧边栏顶部、侧边栏底部、文章详情底部、评论框顶部、文章详情页顶部、 ** 文章详情内 ,站长可以随时随意更换自己的广告链接,赚外快不成问题!
58
58
- ** 多种编辑器** :支持 wangEditor、Markdown 和 TinyMCE 等多种文章编辑器,可以自行选择
59
59
- ** 自动申请友情链接** :在线申请友情链接,无需站长手动配置,只需申请方添加完站长的连接后自行申请即可
60
60
- ** 百度推送** :支持百度推送功能,加速百度搜索引擎收录博文
Original file line number Diff line number Diff line change 12
12
<parent >
13
13
<groupId >com.zyd</groupId >
14
14
<artifactId >blog</artifactId >
15
- <version >2.3.6 </version >
15
+ <version >2.3.7 </version >
16
16
</parent >
17
17
18
18
<dependencies >
Original file line number Diff line number Diff line change 12
12
<parent >
13
13
<groupId >com.zyd</groupId >
14
14
<artifactId >blog</artifactId >
15
- <version >2.3.6 </version >
15
+ <version >2.3.7 </version >
16
16
</parent >
17
17
18
18
<dependencies >
Original file line number Diff line number Diff line change 12
12
<parent >
13
13
<groupId >com.zyd</groupId >
14
14
<artifactId >blog</artifactId >
15
- <version >2.3.6 </version >
15
+ <version >2.3.7 </version >
16
16
</parent >
17
17
18
18
<dependencies >
Original file line number Diff line number Diff line change 12
12
<parent >
13
13
<groupId >com.zyd</groupId >
14
14
<artifactId >blog</artifactId >
15
- <version >2.3.6 </version >
15
+ <version >2.3.7 </version >
16
16
</parent >
17
17
18
18
<properties >
Original file line number Diff line number Diff line change 12
12
<parent >
13
13
<groupId >com.zyd</groupId >
14
14
<artifactId >blog</artifactId >
15
- <version >2.3.6 </version >
15
+ <version >2.3.7 </version >
16
16
</parent >
17
17
18
18
<dependencies >
Original file line number Diff line number Diff line change @@ -12,13 +12,19 @@ if [ "$version" ]; then
12
12
echo " >> 当前版本已更正为:$current_version "
13
13
fi
14
14
15
- cd $pwd /blog-admin/ || exit
16
- docker build -t justauth/blog-admin:v${current_version} .
17
- docker push justauth/blog-admin:v${current_version}
15
+ read -p ' 是否需要重新构建 blog-admin?[y/n]' repeat
16
+ if [ " ${repeat} " = " y" -o " ${repeat} " = " Y" ]; then
17
+ cd $pwd /blog-admin/ || exit
18
+ docker build -t justauth/blog-admin:v${current_version} .
19
+ docker push justauth/blog-admin:v${current_version}
20
+ fi
18
21
19
- cd $pwd /blog-web/ || exit
20
- docker build -t justauth/blog-web:v${current_version} .
21
- docker push justauth/blog-web:v${current_version}
22
+ read -p ' 是否需要重新构建 blog-web?[y/n]' repeat
23
+ if [ " ${repeat} " = " y" -o " ${repeat} " = " Y" ]; then
24
+ cd $pwd /blog-web/ || exit
25
+ docker build -t justauth/blog-web:v${current_version} .
26
+ docker push justauth/blog-web:v${current_version}
27
+ fi
22
28
23
29
read -p ' 是否需要重新构建 blog-mysql?[y/n]' repeat
24
30
if [ " ${repeat} " = " y" -o " ${repeat} " = " Y" ]; then
Original file line number Diff line number Diff line change 1
- 2.3.5
1
+ 2.3.7
Original file line number Diff line number Diff line change 1
- # FROM mysql:8.0.20
2
1
FROM mysql:5.7
3
2
4
3
MAINTAINER yadong.zhang0415@gmail.com
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.zyd</groupId >
7
7
<artifactId >blog</artifactId >
8
- <version >2.3.6 </version >
8
+ <version >2.3.7 </version >
9
9
<packaging >pom</packaging >
10
10
<modules >
11
11
<module >blog-core</module >
58
58
<dependency >
59
59
<groupId >com.zyd</groupId >
60
60
<artifactId >blog-core</artifactId >
61
- <version >2.3.6 </version >
61
+ <version >2.3.7 </version >
62
62
</dependency >
63
63
<dependency >
64
64
<groupId >com.zyd</groupId >
65
65
<artifactId >blog-admin</artifactId >
66
- <version >2.3.6 </version >
66
+ <version >2.3.7 </version >
67
67
</dependency >
68
68
<dependency >
69
69
<groupId >com.zyd</groupId >
70
70
<artifactId >blog-web</artifactId >
71
- <version >2.3.6 </version >
71
+ <version >2.3.7 </version >
72
72
</dependency >
73
73
<dependency >
74
74
<groupId >com.zyd</groupId >
75
75
<artifactId >blog-file</artifactId >
76
- <version >2.3.6 </version >
76
+ <version >2.3.7 </version >
77
77
</dependency >
78
78
<dependency >
79
79
<groupId >com.zyd</groupId >
80
80
<artifactId >blog-codegen</artifactId >
81
- <version >2.3.6 </version >
81
+ <version >2.3.7 </version >
82
82
</dependency >
83
83
</dependencies >
84
84
</dependencyManagement >
You can’t perform that action at this time.
0 commit comments