Browse Source

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

pull/2190/merge
NGPixel 4 years ago
parent
commit
29afc61abf
1 changed files with 3 additions and 3 deletions
  1. 6
      dev/build/config.yml

6
dev/build/config.yml

@ -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)

Loading…
Cancel
Save