Skip to content

Commit

Permalink
Fix default db pass
Browse files Browse the repository at this point in the history
  • Loading branch information
KireevDmitry committed May 6, 2024
1 parent b6ad698 commit e8b83b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"dbPort": os.environ.get("DB_PORT", "5432"),
"dbUser": os.environ.get("DB_USER", "onlyoffice"),
"dbName": os.environ.get("DB_NAME", os.environ.get("DB_USER", "onlyoffice")),
"dbPass": os.environ.get("DB_PWD", "")
"dbPass": os.environ.get("DB_PWD", "onlyoffice")
},
"redis": {
"name": os.environ.get("REDIS_CONNECTOR_NAME", "redis"),
Expand Down

0 comments on commit e8b83b3

Please sign in to comment.