Skip to content

Commit

Permalink
docs: 更新docker部署文档
Browse files Browse the repository at this point in the history
  • Loading branch information
eddie murphy committed Sep 19, 2024
1 parent fb442a8 commit bae175a
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@



# 功能列表
# Roadmap

- [x] 时序图搜索
- [x] 时序图展示
- [ ] 分表
- [ ] 数据保留日期设置
- [ ] 收藏
- [ ] 导入pcap
- [ ] 导入json
Expand All @@ -26,6 +27,32 @@

- PostgreSQL 16

# 部署

## docker 部署

```shell
docker run -d --name=siphub \
-e DBUser=root \
-e DBPasswd=mypass \
-e DBAddr=1.2.3.4 \
-e DBPort=5432 \
-e DBName=postgres \
-p 3000:3000 \
eddiemurphy5/siphub:latest
```

**启动环境变量说明**

- DBUser: 数据库用户名, 默认wangduanduan
- DBPasswd: 数据库密码
- DBAddr: 数据库地址,默认127.0.0.1
- DBPort: 数据库端口,默认5432,
- DBName: 数据库名,默认postgres,
- LogLevel: 日志级别, 默认debug
- QueryLimit: 一次性查询的行数,默认10


# 架构图

- OpenSIPS、FreeSWITCH、Heplify 将SIP消息以HEP格式写入到hep-connect
Expand Down

0 comments on commit bae175a

Please sign in to comment.