更新配置,解决docker部署时无法通过环境变量指定db配置的问题
This commit is contained in:
@@ -49,10 +49,10 @@ neutrino:
|
||||
data:
|
||||
db:
|
||||
# 数据库类型,目前支持h2、mysql、mariadb
|
||||
type: h2
|
||||
type: ${DB_TYPE:h2}
|
||||
# 数据库连接URL
|
||||
url: jdbc:h2:file:./data/db;MODE=MySQL;AUTO_SERVER=TRUE
|
||||
url: ${DB_URL:jdbc:h2:file:./data/db;MODE=MySQL;AUTO_SERVER=TRUE}
|
||||
# 数据库用户名
|
||||
username:
|
||||
username: ${DB_USER:}
|
||||
# 数据库密码
|
||||
password:
|
||||
password: ${DB_PASSWORD:}
|
||||
|
||||
Reference in New Issue
Block a user