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
bindIP: 0.0.0.0
db:
type: $(DB_TYPE)
host: $(DB_HOST)
host: '$(DB_HOST)'
port: $(DB_PORT)
user: $(DB_USER)
pass: $(DB_PASS)
user: '$(DB_USER)'
pass: '$(DB_PASS)'
db: $(DB_NAME)
storage: $(DB_FILEPATH)
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