Skip to content

Commit

Permalink
docs: update version 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
soulteary committed Feb 18, 2022
1 parent 87bced5 commit 5229251
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 16 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

## 目录

* [0.2.8](#027---2022-02-18)
* [0.2.7](#027---2022-02-17)
* [0.2.6](#026---2022-02-17)
* [0.2.5](#025---2022-02-16)
Expand All @@ -13,6 +14,14 @@
* [0.2.0](#020---2022-01-30)
* [0.1.0](#010---2022-01-27)

# 0.2.8 - 2022-02-18

当前版本优化了三个用户反馈的小细节。

- [优化] 添加了搜索返回功能。 https://github.com/soulteary/docker-flare/issues/10 (感谢 @eallion 建议)
- [优化] 简单调整了移动端展示,下一步计划先开放模版和自定义主题。 https://github.com/soulteary/docker-flare/issues/6 (感谢 @flashliao 建议)
- [新增] 为容器镜像添加了 `latest` 标签。 https://github.com/soulteary/docker-flare/issues/8 https://github.com/soulteary/docker-flare/issues/7 (感谢 @viticis @eallion 建议)

## 0.2.7 - 2022-02-17

当前版本优化了一个小细节,以及修正了一个用户反馈的问题。
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ cd docker-flare
启动应用非常简单,如果你习惯使用 Docker,可以执行:

```bash
docker run --rm -it -p 5005:5005 -v `pwd`/app:/app soulteary/flare:0.2.7
# 可以使用最新镜像
docker run --rm -it -p 5005:5005 -v `pwd`/app:/app soulteary/flare
# 也可以追求明确,使用固定版本
docker run --rm -it -p 5005:5005 -v `pwd`/app:/app soulteary/flare:0.2.8
```

如果你习惯使用 docker-compose,只需要执行:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-traefik.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.6'

services:
flare:
image: soulteary/flare:0.2.7
image: soulteary/flare:0.2.8
restart: always
# 默认无需添加任何参数,如有特殊需求
# 可阅读文档 https://github.com/soulteary/docker-flare/blob/main/docs/advanced-startup.md
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.6'

services:
flare:
image: soulteary/flare:0.2.7
image: soulteary/flare:0.2.8
restart: always
# 默认无需添加任何参数,如有特殊需求
# 可阅读文档 https://github.com/soulteary/docker-flare/blob/main/docs/advanced-startup.md
Expand Down
25 changes: 12 additions & 13 deletions docs/application-account.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version: '3.6'

services:
flare:
image: soulteary/flare:0.2.7
image: soulteary/flare:0.2.8
restart: always
# 默认无需添加任何参数,如有特殊需求
# 可阅读文档 https://github.com/soulteary/docker-flare/blob/main/docs/advanced-startup.md
Expand All @@ -34,16 +34,15 @@ services:
当你使用 `docker-compose up -d` 启动应用之后,接着使用 `docker-compose ps`,就可以看到包含密码的日志输出啦:

```bash
2022/02/17 20:37:33 用户未指定 `FLARE_USER`,使用默认用户名 flare
2022/02/17 20:37:33 用户未指定 `FLARE_PASS`,自动生成应用密码 2d75c861a5311136
找不到配置文件config,创建默认配置。
2022/02/17 20:37:33
2022/02/17 20:37:33 Flare v0.2.7-FCD94B3 linux/amd64 BuildDate=2022-02-17T20:19:17+0800
2022/02/17 20:37:33
2022/02/17 20:37:33 服务端口 5005
2022/02/17 20:37:33 合并页面资源请求 false
2022/02/17 20:37:33 启用应用离线模式 false
2022/02/17 20:37:33 启用免登陆模式 true
2022/02/17 20:37:33 启用教程模块,可以访问 /guide 来获取“使用向导”。
2022/02/17 20:37:33 应用已启动 🚀
2022/02/18 12:24:50 用户未指定 `FLARE_USER`,使用默认用户名 flare
2022/02/18 12:24:50 用户未指定 `FLARE_PASS`,自动生成应用密码 91a02de0b1e95e5f
2022/02/18 12:24:50
2022/02/18 12:24:50 Flare v0.2.8-59DA7C1 linux/amd64 BuildDate=2022-02-18T11:17:47+0800
2022/02/18 12:24:50
2022/02/18 12:24:50 服务端口 5005
2022/02/18 12:24:50 合并页面资源请求 false
2022/02/18 12:24:50 启用应用离线模式 false
2022/02/18 12:24:50 启用免登陆模式 true
2022/02/18 12:24:50 启用教程模块,可以访问 /guide 来获取“使用向导”。
2022/02/18 12:24:50 应用已启动 🚀
```

0 comments on commit 5229251

Please sign in to comment.