问题一:
docker安装sentry,使用release版本时要下载 onpremise 的版本:
https://github.com/getsentry/onpremise
onpremise 版本,这个版本是用来自己安装部署的。
搜索引擎可能给出 https://github.com/getsentry/sentry 的链接在搜索结果第一位。
问题二:
Email服务器是打算用普通smtp 25端口还是ssl/tls的465/587端口。
163是25端口以下以163为例:(其他端口见文末链接)
在sentry的安装目录下
tree
cd sentry
cat config.yml
gedit config.yml
在gedit config.yml 中更改配置如下:
mail.backend: 'smtp'
mail.host: 'smtp.163.com'
mail.port: 25
mail.username: 'youraccount@163.com'
mail.password: '**********'
mail.use-tls: false
mail.from: 'root@localhost'