rss-reader/README.md

49 lines
1.0 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# rss-reader
RSS阅读器基于Java SpringBoot搭建。
## 实现功能
1. RSS订阅功能
2. 邮件推送;
3. 微博图片保存;
4. 微博图片上传AList
## 部署运行
```shell
docker run -d --restart=always \
-v ./config:/app/config \
-v ./log:/app/log \
-v ./images:/app/images \
-v ./video:/app/video \
-v /etc/localtime:/etc/localtime:ro \
--name rss-reader \
bcrjl/rss-reader:latest
```
打开`data.json`配置需要订阅的RSS源;打开`config.setting`配置系统参数;
以上配置均为动态刷新,无需重启容器
### 映射目录说明
| 本地目录 | 容器目录 | 说明 |
|----------| --- |-------|
| ./config | /app/config | 配置文件 |
| ./log | /app/log | 运行日志 |
| ./images | /app/images | 下载的图片 |
| ./video | /app/video | 下载的视频 |
## FAQ
### 1.AList上传异常
配置错误,请检查`config.setting`配置文件中的`aListUrl`配置,结尾不能带`/`
## TODO
1. 订阅请求增加代理配置
2推送渠道企业微信、钉钉等
3...