You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In config.sample default settings point to localhost (127.0.0.1), in docker compose environment this services are available on their hostname like redis:6379 and database db:5432 . Look at comments in configuration sample for more information.
For docker compose, you have use the following defaults in the config.toml file for db. the host should be "db" and username, password and database names should be default "libredesk".
[db]
# If using docker compose, use the service name as the host. e.g. db
host = "db"
port = 5432
user = "libredesk"
password = "libredesk"
database = "libredesk"
The text was updated successfully, but these errors were encountered: