Commit 29afc61a authored by NGPixel's avatar NGPixel

fix: quote enclose db pass in docker config file (#2293)

parent 19af5636
...@@ -2,10 +2,10 @@ port: 3000 ...@@ -2,10 +2,10 @@ port: 3000
bindIP: 0.0.0.0 bindIP: 0.0.0.0
db: db:
type: $(DB_TYPE) type: $(DB_TYPE)
host: $(DB_HOST) host: '$(DB_HOST)'
port: $(DB_PORT) port: $(DB_PORT)
user: $(DB_USER) user: '$(DB_USER)'
pass: $(DB_PASS) pass: '$(DB_PASS)'
db: $(DB_NAME) db: $(DB_NAME)
storage: $(DB_FILEPATH) storage: $(DB_FILEPATH)
ssl: $(DB_SSL) ssl: $(DB_SSL)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment