Skip to content
Snippets Groups Projects
Commit d9c54c31 authored by David Trattnig's avatar David Trattnig
Browse files

Fix: Expose DB host as env var #113

parent b4042c2d
No related branches found
No related tags found
No related merge requests found
...@@ -74,7 +74,7 @@ db_type="postgresql" ...@@ -74,7 +74,7 @@ db_type="postgresql"
db_name="${ENGINE_DB_NAME}" db_name="${ENGINE_DB_NAME}"
db_user="${ENGINE_DB_USER}" db_user="${ENGINE_DB_USER}"
db_pass="${ENGINE_DB_PASS}" db_pass="${ENGINE_DB_PASS}"
db_host="engine-postgres" db_host="${ENGINE_DB_HOST}"
db_charset="utf8" db_charset="utf8"
# Base path as seen by "engine-core", not accessed by "engine"; this is required to construct the absolute audio file path (check "Audio Store" in the docs) # Base path as seen by "engine-core", not accessed by "engine"; this is required to construct the absolute audio file path (check "Audio Store" in the docs)
# Either provide an absolute base path or a relative one starting in the `engine-core/src` directory. In case of `engine-core` running in docker use `/var/audio/source` # Either provide an absolute base path or a relative one starting in the `engine-core/src` directory. In case of `engine-core` running in docker use `/var/audio/source`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment