Hi @atlet99
According to your logs it seems like a database connection problem:
File "/opt/venv/lib/python3.11/site-packages/django/db/backends/postgresql/base.py", line 187, in get_new_connection
connection = Database.connect(**conn_params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/venv/lib/python3.11/site-packages/psycopg2/__init__.py", line 122, in connect
conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
django.db.utils.OperationalError: connection to server at "taiga-db" (172.24.0.3), port 5432 failed: FATAL: password authentication failed for user "taiga"
Check that the database configuration variables in your .env
file have the correct values for the taiga database user (following https://community.taiga.io/t/taiga-30min-setup/170#database-settings-7)
If this is not your first time deploying Taiga and you were already using taiga-docker I recommend that you follow this migration guide to use the new .env
based deployment (Taiga version 6.6.0+)
I hope this helps.
Regards.