Would you like to learn more about Taiga?
How is the best way to migrate to Taiga?
Do you have any doubts that you need help with?
Taiga team and Community is here to help you to get started with Taiga!
Would you like to learn more about Taiga?
How is the best way to migrate to Taiga?
Do you have any doubts that you need help with?
Taiga team and Community is here to help you to get started with Taiga!
Hello, good morning. I’m new to the application.
As a first approach, we want to use KANBAN to manage the team’s flow.
The problem we have is that we can’t change the names of the labels in kanban. Can you help us with that?
I recently installed taiga on ubuntu server using the 30-min docker procedure.
I created a superuser ADMIN
But when i try to login to the server the following happens:
I have already tried this:
My .env looks like this:
# Taiga's URLs - Variables to define where Taiga should be served
TAIGA_SCHEME=http # serve Taiga using "http" or "https" (secured) connection
TAIGA_DOMAIN=localhost:9000 # Taiga's base URL
SUBPATH="" # it'll be appended to the TAIGA_DOMAIN (use either "" or a "/subpath")
WEBSOCKETS_SCHEME=ws # events connection protocol (use either "ws" or "wss")
# Taiga's Secret Key - Variable to provide cryptographic signing
SECRET_KEY="xxxxxxxxxxxxxxxxxxxx" # Please, change it to an unpredictable value!!
# Taiga's Database settings - Variables to create the Taiga database and connect to it
POSTGRES_USER=taiga # user to connect to PostgreSQL
POSTGRES_PASSWORD=xxxxxxxxxxx # database user's password
# Taiga's SMTP settings - Variables to send Taiga's emails to the users
EMAIL_BACKEND=console # use an SMTP server or display the emails in the console (either "smtp" or "console")
EMAIL_HOST=smtp.host.example.com # SMTP server address
EMAIL_PORT=587 # default SMTP port
EMAIL_HOST_USER=user # user to connect the SMTP server
EMAIL_HOST_PASSWORD=xxxxxxxxxxxxx # SMTP user's password
EMAIL_DEFAULT_FROM=changeme@example.com # default email address for the automated emails
# EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive (only set one of those to True)
EMAIL_USE_TLS=True # use TLS (secure) connection with the SMTP server
EMAIL_USE_SSL=False # use implicit TLS (secure) connection with the SMTP server
# Taiga's RabbitMQ settings - Variables to leave messages for the realtime and asynchronous events
RABBITMQ_USER=taiga # user to connect to RabbitMQ
RABBITMQ_PASS=xxxxxxxxxxxx # RabbitMQ user's password
RABBITMQ_VHOST=taiga # RabbitMQ container name
RABBITMQ_ERLANG_COOKIE=secret-erlang-cookie # unique value shared by any connected instance of RabbitMQ
# Taiga's Attachments - Variable to define how long the attachments will be accesible
ATTACHMENTS_MAX_AGE=360 # token expiration date (in seconds)
# Taiga's Telemetry - Variable to enable or disable the anonymous telemetry
ENABLE_TELEMETRY=True
sudo docker ps output:
sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
73d0eee43891 nginx:1.19-alpine “/docker-entrypoint.…” About an hour ago Up About an hour 0.0.0.0:9000->80/tcp, [::]:9000->80/tcp taiga-docker-taiga-gateway-1
611085603bad penpotapp/frontend:latest “/bin/bash /entrypoi…” About an hour ago Up About an hour 8080/tcp, 0.0.0.0:9001->80/tcp, [::]:9001->80/tcp taiga-docker-penpot-frontend-1
9fd9f3cb410b taigaio/taiga-back:latest “./docker/entrypoint…” About an hour ago Up About an hour 8000/tcp taiga-docker-taiga-back-1
5e0490263832 taigaio/taiga-back:latest “/taiga-back/docker/…” About an hour ago Up About an hour 8000/tcp taiga-docker-taiga-async-1
eb259f9fdaf9 taigaio/taiga-events:latest “./docker/entrypoint…” About an hour ago Up About an hour 8888/tcp taiga-docker-taiga-events-1
0e49cf0df86a postgres:12.3 “docker-entrypoint.s…” About an hour ago Up About an hour (healthy) 5432/tcp taiga-docker-taiga-db-1
d210bde76591 taigaio/taiga-front:latest “/docker-entrypoint.…” About an hour ago Up About an hour 80/tcp taiga-docker-taiga-front-1
aac0690cf792 redis:6 “docker-entrypoint.s…” About an hour ago Up About an hour 6379/tcp taiga-docker-penpot-redis-1
29b615cad575 taigaio/taiga-protected:latest “./docker/entrypoint…” About an hour ago Up About an hour 8003/tcp taiga-docker-taiga-protected-1
c8ebad902357 rabbitmq:3.8-management-alpine “docker-entrypoint.s…” About an hour ago Up About an hour 4369/tcp, 5671-5672/tcp, 15671-15672/tcp, 15691-15692/tcp, 25672/tcp taiga-docker-taiga-events-rabbitmq-1
54ee6e60f0cf rabbitmq:3.8-management-alpine “docker-entrypoint.s…” About an hour ago Up About an hour 4369/tcp, 5671-5672/tcp, 15671-15672/tcp, 15691-15692/tcp, 25672/tcp taiga-docker-taiga-async-rabbitmq-1
3c62f58d30f5 penpotapp/exporter:latest “node app.js” About an hour ago Up About an hour taiga-docker-penpot-exporter-1
921abe3d057e postgres:13 “docker-entrypoint.s…” About an hour ago Up About an hour 5432/tcp taiga-docker-penpot-postgres-1
Sudo docker network ls output:
sudo docker network ls
NETWORK ID NAME DRIVER SCOPE
30501c7bcc2b bridge bridge local
9b5f1ba7ec18 host host local
7d583895728c none null local
a3ab6979b9da taiga-docker_penpot bridge local
9754d4da54bf taiga-docker_taiga bridge local
sudo docker volume ls
DRIVER VOLUME NAME
local 2b1465cc2647a66a40c46d6f2d6c5be5c53dbc4004f268f0a7addb8dabe4e7ac
local taiga-docker_penpot_assets_data
local taiga-docker_penpot_postgres_data
local taiga-docker_taiga-async-rabbitmq-data
local taiga-docker_taiga-db-data
local taiga-docker_taiga-events-rabbitmq-data
local taiga-docker_taiga-media-data
local taiga-docker_taiga-static-data
Please help. I can provide additional logs if required.